toxcore/testing/BUILD.bazel
iphydf cfff361679
Add random testing program.
This can be used as a random stress test for toxcore.
Adjust the weights to make certain actions more or less likely.
2018-06-23 12:43:09 +00:00

52 lines
941 B
Python

load("//tools:no_undefined.bzl", "cc_library")
cc_library(
name = "misc_tools",
hdrs = [
"misc_tools.c",
],
visibility = ["//c-toxcore:__subpackages__"],
deps = ["//c-toxcore/toxcore:ccompat"],
)
cc_binary(
name = "DHT_test",
srcs = ["DHT_test.c"],
deps = [
":misc_tools",
"//c-toxcore/toxcore",
],
)
cc_binary(
name = "Messenger_test",
srcs = ["Messenger_test.c"],
deps = [
":misc_tools",
"//c-toxcore/toxcore",
],
)
cc_binary(
name = "av_test",
srcs = ["av_test.c"],
deps = [
"//c-toxcore/toxav",
"//c-toxcore/toxav:monolith",
"//c-toxcore/toxcore",
"@opencv//:core",
"@opencv//:highgui",
"@portaudio",
"@sndfile",
],
)
cc_binary(
name = "random_testing",
srcs = ["random_testing.cc"],
deps = [
":misc_tools",
"//c-toxcore/toxcore",
],
)