aboutsummaryrefslogtreecommitdiff
path: root/tests/core/stdlib/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/stdlib/BUILD.bazel')
-rw-r--r--tests/core/stdlib/BUILD.bazel11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/core/stdlib/BUILD.bazel b/tests/core/stdlib/BUILD.bazel
new file mode 100644
index 00000000..eed94654
--- /dev/null
+++ b/tests/core/stdlib/BUILD.bazel
@@ -0,0 +1,11 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_test")
+load(":stdlib_files.bzl", "stdlib_files")
+
+go_test(
+ name = "buildid_test",
+ srcs = ["buildid_test.go"],
+ data = [":stdlib_files"],
+ deps = ["//go/runfiles"],
+)
+
+stdlib_files(name = "stdlib_files")