[compiler-rt] r217165 - [ASan] Remove the check for a double-SEGV from zero_page_pc.cc

Alexander Potapenko glider at google.com
Thu Sep 4 08:40:25 PDT 2014


Author: glider
Date: Thu Sep  4 10:40:25 2014
New Revision: 217165

URL: http://llvm.org/viewvc/llvm-project?rev=217165&view=rev
Log:
[ASan] Remove the check for a double-SEGV from zero_page_pc.cc
Looks like the second crash doesn't happen on Mac.

Modified:
    compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc

Modified: compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc?rev=217165&r1=217164&r2=217165&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/zero_page_pc.cc Thu Sep  4 10:40:25 2014
@@ -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;
 }





More information about the llvm-commits mailing list