summaryrefslogtreecommitdiffhomepage
path: root/tools/go_generics/tests/consts/BUILD
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-07-23 18:00:12 -0700
committerAdin Scannell <ascannell@google.com>2020-07-23 18:00:12 -0700
commitab0262bd94c25bc91d5e0d831b75729c253dfde6 (patch)
treea4a75c66b92b136ed1e250b4b9641a15808bf123 /tools/go_generics/tests/consts/BUILD
parent14839e027f5310346718aea385cea5e45f017170 (diff)
Convert go_generics tests to starlark.
For some reason these tests were broken when run via the bazel docker container. The mechanism used was a bit crazy (self-extracting bundle), so convert them to use straight-forward starlark rules. This has the added advantaged that they are now independent tests.
Diffstat (limited to 'tools/go_generics/tests/consts/BUILD')
-rw-r--r--tools/go_generics/tests/consts/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/go_generics/tests/consts/BUILD b/tools/go_generics/tests/consts/BUILD
new file mode 100644
index 000000000..1e3574593
--- /dev/null
+++ b/tools/go_generics/tests/consts/BUILD
@@ -0,0 +1,17 @@
+load("//tools/go_generics/tests:defs.bzl", "go_generics_test")
+
+go_generics_test(
+ name = "consts",
+ consts = {
+ "c1": "20",
+ "z": "600",
+ "v": "3.3",
+ "s": "\"def\"",
+ "A": "20",
+ "C": "100",
+ "S": "\"def\"",
+ "T": "\"ABC\"",
+ },
+ inputs = ["input.go"],
+ output = "output.go",
+)