summaryrefslogtreecommitdiff
path: root/auto_tests/BUILD.bazel
blob: 23b948e595f6d1182e8ded1566ec8ef0895633da (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cc_library(
    name = "check_compat",
    testonly = True,
    hdrs = ["check_compat.h"],
)

cc_library(
    name = "run_auto_test",
    testonly = True,
    hdrs = ["run_auto_test.h"],
)

test_sizes = {
    "conference_peer_nick_test": "medium",
}

flaky_tests = {
    "crypto_core_test": True,
    "lan_discovery_test": True,
    "tcp_relay_test": True,
}

[cc_test(
    name = src[:-2],
    size = test_sizes.get(
        src[:-2],
        "small",
    ),
    flaky = flaky_tests.get(
        src[:-2],
        False,
    ),
    srcs = [src],
    args = ["$(location %s)" % src],
    copts = ["-Wno-sign-compare"],
    data = glob(["data/*"]),
    deps = [
        ":check_compat",
        ":run_auto_test",
        "//c-toxcore/testing:misc_tools",
        "//c-toxcore/toxav",
        "//c-toxcore/toxcore",
        "//c-toxcore/toxcore:DHT_srcs",
        "//c-toxcore/toxencryptsave",
    ],
) for src in glob(["*_test.c"])]