[llvm-commits] [compiler-rt] r170690 - /compiler-rt/trunk/lib/asan/lit_tests/use-after-scope-inlined.cc

Alexander Potapenko glider at google.com
Thu Dec 20 05:17:49 PST 2012


Author: glider
Date: Thu Dec 20 07:17:49 2012
New Revision: 170690

URL: http://llvm.org/viewvc/llvm-project?rev=170690&view=rev
Log:
[ASan] Make the FileCheck pattern more c++filt-resistant.

This test didn't pass for me locally because of "T0's stack" being converted to "T0'short stack" by c++filt.
Strange enough this doesn't show up on our bots.

Modified:
    compiler-rt/trunk/lib/asan/lit_tests/use-after-scope-inlined.cc

Modified: compiler-rt/trunk/lib/asan/lit_tests/use-after-scope-inlined.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/use-after-scope-inlined.cc?rev=170690&r1=170689&r2=170690&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/use-after-scope-inlined.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/use-after-scope-inlined.cc Thu Dec 20 07:17:49 2012
@@ -24,6 +24,6 @@
   // CHECK:   #0 0x{{.*}} in {{_?}}main
   // CHECK:      {{.*}}use-after-scope-inlined.cc:[[@LINE-4]]
   // CHECK: Address 0x{{.*}} is located at offset
-  // CHECK:      [[OFFSET:[^ ]*]] in frame <main> of T0's stack:
+  // CHECK:      [[OFFSET:[^ ]*]] in frame <main> of T0{{.*}}:
   // CHECK:   {{\[}}[[OFFSET]], {{.*}}) 'x.i'
 }





More information about the llvm-commits mailing list