diff options
Diffstat (limited to 'compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc')
-rw-r--r-- | compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc b/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc index 371053480d2..5a4a24dcd02 100644 --- a/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc +++ b/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc @@ -20,9 +20,7 @@ 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 .* malloc }} -// FIXME: llvm-symbolizer can't find strdup in the CRT. -// CHECKX: {{#1 .*strdup}} -// CHECK: {{#2 .* main .*}}intercept_strdup.cc:[[@LINE-17]] +// CHECK: {{#0 .*strdup}} +// CHECK: {{#1 .* main .*}}intercept_strdup.cc:[[@LINE-15]] free(ptr); } |