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.

llvm-svn: 271779
This commit is contained in:
Chandler Carruth 2016-06-04 06:16:49 +00:00
parent 6a77b62640
commit 79abce39bb
1 changed files with 10 additions and 2 deletions

View File

@ -20,7 +20,15 @@ int main() {
// CHECK: {{#0 .* main .*}}intercept_strdup.cc:[[@LINE-3]] // CHECK: {{#0 .* main .*}}intercept_strdup.cc:[[@LINE-3]]
// CHECK: [[ADDR]] is located 1 bytes to the left of 6-byte region // CHECK: [[ADDR]] is located 1 bytes to the left of 6-byte region
// CHECK: allocated by thread T0 here: // CHECK: allocated by thread T0 here:
// CHECK: {{#[0-9] .*strdup}} // CHECK: #0 {{.*strdup}}
// CHECK: {{#[0-9] .* main .*}}intercept_strdup.cc:[[@LINE-15]] // 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); free(ptr);
} }