aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/BUILD
blob: f39bcdc530735006c91d2c1ec20da33050c603dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
TEST_SUITES = [
    "rules",
    "analysis",
    "foundations",
    "shell",
    "skyframe",
    "ideinfo",
]

[
    test_suite(
        name = n,
        tests = ["//src/test/java/com/google/devtools/build/lib:" + n],
    )
    for n in TEST_SUITES
]

test_suite(
    name = "ziputils",
    tests = ["//src/test/java/com/google/devtools/build/android/ziputils:ziputils-tests"],
)

test_suite(
    name = "others",
    tests = [
        "//src/test/java/com/google/devtools/build/lib:others",
        "//src/test/java/com/google/devtools/common/options:options_test",
    ],
)