mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
b9a75d98b2
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.
45 lines
843 B
Python
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",
|
|
],
|
|
)
|