aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/integration/BUILD
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2015-12-07 10:19:19 +0000
committerGravatar David Chen <dzc@google.com>2015-12-07 21:17:38 +0000
commitf815626bcd1e4ccdc2ff89e8a0ec754c2baa3b2d (patch)
treeb698b8e76101d7c18e093272363e512bc123df32 /src/test/shell/integration/BUILD
parentcca703a9d74e865240ca46ce162937aa74820507 (diff)
Open-source runfiles_test integration test
-- MOS_MIGRATED_REVID=109561975
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"],
+)