Mark conference test as small.

This used to take a long time, but is now very fast.
This commit is contained in:
iphydf 2020-03-27 10:27:03 +00:00
parent 6732e5ef2f
commit 44e13956ef
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -12,10 +12,6 @@ cc_library(
hdrs = ["run_auto_test.h"],
)
test_sizes = {
"conference_peer_nick_test": "medium",
}
flaky_tests = {
"crypto_core_test": True,
"lan_discovery_test": True,
@ -24,10 +20,7 @@ flaky_tests = {
[cc_test(
name = src[:-2],
size = test_sizes.get(
src[:-2],
"small",
),
size = "small",
srcs = [src],
args = ["$(location %s)" % src],
copts = ["-Wno-sign-compare"],