summaryrefslogtreecommitdiff
path: root/auto_tests/BUILD.bazel
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-23 02:22:38 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-24 22:20:22 +0000
commitd3b286cb434ed228e7b62cc70cb293e7a5554bfa (patch)
tree9ab3dd66f9dba2ca861ba8c6e098fb96754aa80b /auto_tests/BUILD.bazel
parentafc80922e720f5d2a93bdfb3745da058e5ddf81b (diff)
Fix a bunch of compiler warnings and remove suppressions.
Diffstat (limited to 'auto_tests/BUILD.bazel')
-rw-r--r--auto_tests/BUILD.bazel10
1 files changed, 2 insertions, 8 deletions
diff --git a/auto_tests/BUILD.bazel b/auto_tests/BUILD.bazel
index 88951f97..af8920b1 100644
--- a/auto_tests/BUILD.bazel
+++ b/auto_tests/BUILD.bazel
@@ -11,10 +11,7 @@ cc_library(
11 name = src[:-2], 11 name = src[:-2],
12 size = "small", 12 size = "small",
13 srcs = [src], 13 srcs = [src],
14 copts = [ 14 copts = ["-Wno-sign-compare"],
15 "-Wno-parentheses",
16 "-Wno-sign-compare",
17 ],
18 deps = [ 15 deps = [
19 ":helpers", 16 ":helpers",
20 "//c-toxcore/other:monolith", 17 "//c-toxcore/other:monolith",
@@ -37,10 +34,7 @@ cc_test(
37 name = "monolith_test", 34 name = "monolith_test",
38 size = "small", 35 size = "small",
39 srcs = ["monolith_test.cpp"], 36 srcs = ["monolith_test.cpp"],
40 copts = [ 37 copts = ["-Wno-sign-compare"],
41 "-Wno-parentheses",
42 "-Wno-sign-compare",
43 ],
44 deps = [ 38 deps = [
45 ":helpers", 39 ":helpers",
46 ":monolith", 40 ":monolith",