forked from Green-Sky/tomato
Green Sky
32a8dba185
38e4c82fe0 feat: add ngc events 8099d82397 diagnostic: get the number of close dht nodes with announce/store support d01c116764 cleanup: make it more clear that assert and uint32_t increment both only exist if NDEBUG is not defined 58fac53429 refactor: Add a `bin_unpack_bin_max` for max-length arrays. 6be29f01e5 chore: Add more logging to loading conferences from savedata. 1195271b7f Fix inversed return values 82276ef5ac cleanup: Fix GCC compatibility. REVERT: 82460b2124 feat: add ngc events git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 38e4c82fe0fc373b9d43ee9ad2b8fe5fd1d26810
87 lines
2.2 KiB
Python
87 lines
2.2 KiB
Python
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
|
|
|
|
package(features = ["layering_check"])
|
|
|
|
cc_library(
|
|
name = "check_compat",
|
|
testonly = True,
|
|
hdrs = ["check_compat.h"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "auto_test_support",
|
|
testonly = True,
|
|
srcs = ["auto_test_support.c"],
|
|
hdrs = ["auto_test_support.h"],
|
|
deps = [
|
|
":check_compat",
|
|
"//c-toxcore/testing:misc_tools",
|
|
"//c-toxcore/toxcore:Messenger",
|
|
"//c-toxcore/toxcore:mono_time",
|
|
"//c-toxcore/toxcore:tox",
|
|
],
|
|
)
|
|
|
|
flaky_tests = {
|
|
"crypto_core_test": True,
|
|
"lan_discovery_test": True,
|
|
"save_load_test": True,
|
|
"tox_many_tcp_test": True,
|
|
}
|
|
|
|
extra_args = {
|
|
"proxy_test": ["$(location //c-toxcore/other/proxy)"],
|
|
}
|
|
|
|
extra_data = {
|
|
"proxy_test": ["//c-toxcore/other/proxy"],
|
|
}
|
|
|
|
[cc_test(
|
|
name = src[:-2],
|
|
size = "small",
|
|
srcs = [src],
|
|
args = ["$(location %s)" % src] + extra_args.get(
|
|
src[:-2],
|
|
[],
|
|
),
|
|
data = glob(["data/*"]) + extra_data.get(
|
|
src[:-2],
|
|
[],
|
|
),
|
|
flaky = flaky_tests.get(
|
|
src[:-2],
|
|
False,
|
|
),
|
|
deps = [
|
|
":auto_test_support",
|
|
":check_compat",
|
|
"//c-toxcore/testing:misc_tools",
|
|
"//c-toxcore/toxav",
|
|
"//c-toxcore/toxcore:Messenger",
|
|
"//c-toxcore/toxcore:TCP_client",
|
|
"//c-toxcore/toxcore:TCP_common",
|
|
"//c-toxcore/toxcore:TCP_connection",
|
|
"//c-toxcore/toxcore:TCP_server",
|
|
"//c-toxcore/toxcore:announce",
|
|
"//c-toxcore/toxcore:ccompat",
|
|
"//c-toxcore/toxcore:crypto_core",
|
|
"//c-toxcore/toxcore:forwarding",
|
|
"//c-toxcore/toxcore:friend_connection",
|
|
"//c-toxcore/toxcore:logger",
|
|
"//c-toxcore/toxcore:mono_time",
|
|
"//c-toxcore/toxcore:net_crypto",
|
|
"//c-toxcore/toxcore:network",
|
|
"//c-toxcore/toxcore:onion",
|
|
"//c-toxcore/toxcore:onion_announce",
|
|
"//c-toxcore/toxcore:onion_client",
|
|
"//c-toxcore/toxcore:tox",
|
|
"//c-toxcore/toxcore:tox_dispatch",
|
|
"//c-toxcore/toxcore:tox_events",
|
|
"//c-toxcore/toxcore:util",
|
|
"//c-toxcore/toxencryptsave",
|
|
"@libsodium",
|
|
"@libvpx",
|
|
],
|
|
) for src in glob(["*_test.c"])]
|