diff options
author | Alexander Potapenko <glider@google.com> | 2014-09-04 15:40:25 +0000 |
---|---|---|
committer | Alexander Potapenko <glider@google.com> | 2014-09-04 15:40:25 +0000 |
commit | 7c3d581e8a40c26fe2e29a565782a75d4c513383 (patch) | |
tree | 45b3449ad7831806f554eecc0215eae4f5fee599 /compiler-rt/test/asan/TestCases | |
parent | cf914aaeb768062cf4aa4ad91dca258fecf86cd3 (diff) | |
download | bcm5719-llvm-7c3d581e8a40c26fe2e29a565782a75d4c513383.tar.gz bcm5719-llvm-7c3d581e8a40c26fe2e29a565782a75d4c513383.zip |
[ASan] Remove the check for a double-SEGV from zero_page_pc.cc
Looks like the second crash doesn't happen on Mac.
llvm-svn: 217165
Diffstat (limited to 'compiler-rt/test/asan/TestCases')
-rw-r--r-- | compiler-rt/test/asan/TestCases/zero_page_pc.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/TestCases/zero_page_pc.cc b/compiler-rt/test/asan/TestCases/zero_page_pc.cc index 87be154d662..31ba5cec6c3 100644 --- a/compiler-rt/test/asan/TestCases/zero_page_pc.cc +++ b/compiler-rt/test/asan/TestCases/zero_page_pc.cc @@ -6,6 +6,5 @@ int main() { void_f *func = (void_f *)0x7; func(); // CHECK: {{AddressSanitizer: SEGV.*(pc.*0007)}} - // CHECK: AddressSanitizer: while reporting a bug found another one. Ignoring. return 0; } |