[llvm-commits] [compiler-rt] r149330 - in /compiler-rt/trunk/lib/asan/tests: heap-overflow.tmpl.Darwin strncpy-overflow.tmpl.Darwin use-after-free.tmpl.Darwin

Kostya Serebryany kcc at google.com
Mon Jan 30 17:56:59 PST 2012


Author: kcc
Date: Mon Jan 30 19:56:58 2012
New Revision: 149330

URL: http://llvm.org/viewvc/llvm-project?rev=149330&view=rev
Log:
[asan] tests should not require the asan-rt to be built with debug info

Modified:
    compiler-rt/trunk/lib/asan/tests/heap-overflow.tmpl.Darwin
    compiler-rt/trunk/lib/asan/tests/strncpy-overflow.tmpl.Darwin
    compiler-rt/trunk/lib/asan/tests/use-after-free.tmpl.Darwin

Modified: compiler-rt/trunk/lib/asan/tests/heap-overflow.tmpl.Darwin
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/tests/heap-overflow.tmpl.Darwin?rev=149330&r1=149329&r2=149330&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/tests/heap-overflow.tmpl.Darwin (original)
+++ compiler-rt/trunk/lib/asan/tests/heap-overflow.tmpl.Darwin Mon Jan 30 19:56:58 2012
@@ -2,7 +2,7 @@
     #0 0x.* in main .*heap-overflow.cc:6
 0x.* is located 0 bytes to the right of 10-byte region
 allocated by thread T0 here:
-    #0 0x.* in .*mz_malloc.* _asan_rtl_
+    #0 0x.* in .*mz_malloc.*
     #1 0x.* in malloc_zone_malloc.*
     #2 0x.* in malloc.*
     #3 0x.* in main heap-overflow.cc:[45]

Modified: compiler-rt/trunk/lib/asan/tests/strncpy-overflow.tmpl.Darwin
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/tests/strncpy-overflow.tmpl.Darwin?rev=149330&r1=149329&r2=149330&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/tests/strncpy-overflow.tmpl.Darwin (original)
+++ compiler-rt/trunk/lib/asan/tests/strncpy-overflow.tmpl.Darwin Mon Jan 30 19:56:58 2012
@@ -3,7 +3,7 @@
     #1 0x.* in main .*strncpy-overflow.cc:[78]
 0x.* is located 0 bytes to the right of 9-byte region
 allocated by thread T0 here:
-    #0 0x.* in .*mz_malloc.* _asan_rtl_
+    #0 0x.* in .*mz_malloc.*
     #1 0x.* in malloc_zone_malloc.*
     #2 0x.* in malloc.*
     #3 0x.* in main .*strncpy-overflow.cc:6

Modified: compiler-rt/trunk/lib/asan/tests/use-after-free.tmpl.Darwin
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/tests/use-after-free.tmpl.Darwin?rev=149330&r1=149329&r2=149330&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/tests/use-after-free.tmpl.Darwin (original)
+++ compiler-rt/trunk/lib/asan/tests/use-after-free.tmpl.Darwin Mon Jan 30 19:56:58 2012
@@ -3,12 +3,12 @@
     #0 0x.* in main .*use-after-free.cc:5
 0x.* is located 5 bytes inside of 10-byte region .0x.*,0x.*
 freed by thread T0 here:
-    #0 0x.* in .*mz_free.* _asan_rtl_
+    #0 0x.* in .*mz_free.*
 # We override free() on Darwin, thus no malloc_zone_free    
     #1 0x.* in free
     #2 0x.* in main .*use-after-free.cc:[45]
 previously allocated by thread T0 here:
-    #0 0x.* in .*mz_malloc.* _asan_rtl_
+    #0 0x.* in .*mz_malloc.*
     #1 0x.* in malloc_zone_malloc.*
     #2 0x.* in malloc.*
     #3 0x.* in main .*use-after-free.cc:3





More information about the llvm-commits mailing list