aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/integration/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/shell/integration/BUILD')
-rw-r--r--src/test/shell/integration/BUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/shell/integration/BUILD b/src/test/shell/integration/BUILD
new file mode 100644
index 0000000000..3fba7de35e
--- /dev/null
+++ b/src/test/shell/integration/BUILD
@@ -0,0 +1,22 @@
+package(default_visibility = ["//visibility:private"])
+
+filegroup(
+ name = "test-deps",
+ testonly = 1,
+ srcs = [
+ "testenv.sh",
+ "//src/test/shell/bazel:test-deps",
+ ],
+)
+
+sh_test(
+ name = "runfiles_test",
+ size = "medium",
+ srcs = ["runfiles_test.sh"],
+ data = [":test-deps"],
+)
+
+test_suite(
+ name = "all_tests",
+ visibility = ["//visibility:public"],
+)