summaryrefslogtreecommitdiff
path: root/auto_tests/BUILD.bazel
blob: 88951f975695d55d8735499f857adbe28c37bf01 (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
47
48
49
50
cc_library(
    name = "helpers",
    testonly = True,
    hdrs = [
        "check_compat.h",
        "helpers.h",
    ],
)

[cc_test(
    name = src[:-2],
    size = "small",
    srcs = [src],
    copts = [
        "-Wno-parentheses",
        "-Wno-sign-compare",
    ],
    deps = [
        ":helpers",
        "//c-toxcore/other:monolith",
        "//c-toxcore/testing:misc_tools",
        "//c-toxcore/toxav",
        "//c-toxcore/toxcore",
        "//c-toxcore/toxencryptsave",
    ],
) for src in glob(["*_test.c"])]

cc_library(
    name = "monolith",
    hdrs = glob([
        "*.c",
        "*.h",
    ]),
)

cc_test(
    name = "monolith_test",
    size = "small",
    srcs = ["monolith_test.cpp"],
    copts = [
        "-Wno-parentheses",
        "-Wno-sign-compare",
    ],
    deps = [
        ":helpers",
        ":monolith",
        "//c-toxcore/other:monolith",
        "//c-toxcore/testing:misc_tools",
    ],
)