toxcore/auto_tests/BUILD.bazel
iphydf b9a75d98b2
Remove broken conference tests.
These display some idea, but the tests are not implemented correctly. We
will need to implement the idea correctly later, but for now we can't use
these.
2018-06-29 18:25:44 +00:00

45 lines
843 B
Python

cc_library(
name = "helpers",
testonly = True,
hdrs = [
"check_compat.h",
"helpers.h",
],
)
[cc_test(
name = src[:-2],
size = "small",
srcs = [src],
copts = ["-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.cc"],
copts = ["-Wno-sign-compare"],
deps = [
":helpers",
":monolith",
"//c-toxcore/other:monolith",
"//c-toxcore/testing:misc_tools",
],
)