diff options
Diffstat (limited to 'auto_tests/BUILD.bazel')
-rw-r--r-- | auto_tests/BUILD.bazel | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/auto_tests/BUILD.bazel b/auto_tests/BUILD.bazel index 23b948e5..5a1ae10e 100644 --- a/auto_tests/BUILD.bazel +++ b/auto_tests/BUILD.bazel | |||
@@ -26,14 +26,14 @@ flaky_tests = { | |||
26 | src[:-2], | 26 | src[:-2], |
27 | "small", | 27 | "small", |
28 | ), | 28 | ), |
29 | flaky = flaky_tests.get( | ||
30 | src[:-2], | ||
31 | False, | ||
32 | ), | ||
33 | srcs = [src], | 29 | srcs = [src], |
34 | args = ["$(location %s)" % src], | 30 | args = ["$(location %s)" % src], |
35 | copts = ["-Wno-sign-compare"], | 31 | copts = ["-Wno-sign-compare"], |
36 | data = glob(["data/*"]), | 32 | data = glob(["data/*"]), |
33 | flaky = flaky_tests.get( | ||
34 | src[:-2], | ||
35 | False, | ||
36 | ), | ||
37 | deps = [ | 37 | deps = [ |
38 | ":check_compat", | 38 | ":check_compat", |
39 | ":run_auto_test", | 39 | ":run_auto_test", |
@@ -43,4 +43,8 @@ flaky_tests = { | |||
43 | "//c-toxcore/toxcore:DHT_srcs", | 43 | "//c-toxcore/toxcore:DHT_srcs", |
44 | "//c-toxcore/toxencryptsave", | 44 | "//c-toxcore/toxencryptsave", |
45 | ], | 45 | ], |
46 | ) for src in glob(["*_test.c"])] | 46 | ) for src in glob( |
47 | ["*_test.c"], | ||
48 | # TODO(iphydf): Fix this test and re-enable it. | ||
49 | exclude = ["tcp_relay_test.c"], | ||
50 | )] | ||