toxcore/auto_tests/BUILD.bazel
iphydf 0f7138c010
Upgrade bazel to 2.1.1.
Removed av_test, because it depends on an ancient opencv that starts to
really not exist on modern systems anymore.
2020-03-02 14:23:44 +00:00

51 lines
1.0 KiB
Python

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",
),
srcs = [src],
args = ["$(location %s)" % src],
copts = ["-Wno-sign-compare"],
data = glob(["data/*"]),
flaky = flaky_tests.get(
src[:-2],
False,
),
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"],
# TODO(iphydf): Fix this test and re-enable it.
exclude = ["tcp_relay_test.c"],
)]