diff options
author | Andrei Vagin <avagin@google.com> | 2018-12-21 15:39:04 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-12-21 15:40:08 -0800 |
commit | 89b18f7108e2c3a04169e0b79b615429fbb08a99 (patch) | |
tree | f5434d62952375418cb2f0e05632072524adc1c6 /test/syscalls | |
parent | 71f0d5108bfcfd6be2a61dc32579973f141f97f3 (diff) |
Remove gunit_no_heapcheck from deps
heapcheck works fine now.
PiperOrigin-RevId: 226552252
Change-Id: Ifcf17a377b3d6512a576f54462dd81c1d4c7b17c
Diffstat (limited to 'test/syscalls')
-rw-r--r-- | test/syscalls/linux/BUILD | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index 03e586688..00d521400 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -254,14 +254,15 @@ cc_binary( ], linkstatic = 1, deps = [ + # The heap check doesn't handle mremap properly. + "@com_google_googletest//:gtest", + "@com_google_absl//absl/strings", "//test/util:cleanup", "//test/util:file_descriptor", "//test/util:posix_error", "//test/util:temp_path", "//test/util:test_main", "//test/util:test_util", - "@com_google_absl//absl/strings", - "@com_google_googletest//:gtest", ], ) @@ -1081,6 +1082,9 @@ cc_binary( srcs = ["mremap.cc"], linkstatic = 1, deps = [ + # The heap check fails due to MremapDeathTest + "@com_google_googletest//:gtest", + "@com_google_absl//absl/strings", "//test/util:file_descriptor", "//test/util:logging", "//test/util:memory_util", @@ -1089,8 +1093,6 @@ cc_binary( "//test/util:temp_path", "//test/util:test_main", "//test/util:test_util", - "@com_google_absl//absl/strings", - "@com_google_googletest//:gtest", ], ) |