[compiler-rt] r271779 - Temporary hack to this test to try and get the sanitizer-windows bot to
Chandler Carruth via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 3 23:16:49 PDT 2016
Author: chandlerc
Date: Sat Jun 4 01:16:49 2016
New Revision: 271779
URL: http://llvm.org/viewvc/llvm-project?rev=271779&view=rev
Log:
Temporary hack to this test to try and get the sanitizer-windows bot to
show enough information for me to fix the patterns used here.
Modified:
compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc?rev=271779&r1=271778&r2=271779&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc Sat Jun 4 01:16:49 2016
@@ -20,7 +20,15 @@ int main() {
// CHECK: {{#0 .* main .*}}intercept_strdup.cc:[[@LINE-3]]
// CHECK: [[ADDR]] is located 1 bytes to the left of 6-byte region
// CHECK: allocated by thread T0 here:
-// CHECK: {{#[0-9] .*strdup}}
-// CHECK: {{#[0-9] .* main .*}}intercept_strdup.cc:[[@LINE-15]]
+// CHECK: #0 {{.*strdup}}
+// CHECK: #1 {{.* main .*}}intercept_strdup.cc:[[@LINE-15]]
+// CHECK: #2 {{.*foobar}}
+// CHECK: #3 {{.*foobar}}
+// CHECK: #4 {{.*foobar}}
+// CHECK: #5 {{.*foobar}}
+// CHECK: #6 {{.*foobar}}
+// CHECK: #7 {{.*foobar}}
+// CHECK: #8 {{.*foobar}}
+// CHECK: #9 {{.*foobar}}
free(ptr);
}
More information about the llvm-commits
mailing list