forked from bazel-contrib/rules_go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests/bazel_test: delete legacy test framework (bazel-contrib#2304)
Does not work with newer versions of Bazel, and everything's been migrated to go_bazel_test. Fixes bazel-contrib#1959
- Loading branch information
Jay Conrod
authored
Dec 2, 2019
1 parent
3efdc83
commit a667c18
Showing
6 changed files
with
0 additions
and
421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +0,0 @@ | ||
load(":bazel_tests.bzl", "md5_sum") | ||
|
||
md5_sum( | ||
name = "all_rules_md5", | ||
testonly = True, | ||
srcs = [ | ||
"//go:all_rules", | ||
"//go/tools/builders:all_builder_srcs", | ||
"//proto:all_rules", | ||
], | ||
visibility = ["//visibility:private"], | ||
) | ||
|
||
# Consuming the above md5_sum rule directly into the data deps of a sh_test results in the | ||
# files just not appearing, and the dependancy not triggering. | ||
# If we wrap it in a filegroup first however it just works. | ||
filegroup( | ||
name = "rules_go_deps", | ||
testonly = True, | ||
srcs = [":all_rules_md5"], | ||
visibility = ["//visibility:public"], | ||
) | ||
Oops, something went wrong.