aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/integration/BUILD
blob: 3fba7de35e6b3b66b7330a456f4985dae8e17ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"],
)