diff options
| author | Reid Kleckner <rnk@google.com> | 2015-08-11 16:56:26 +0000 |
|---|---|---|
| committer | Reid Kleckner <rnk@google.com> | 2015-08-11 16:56:26 +0000 |
| commit | 46ed25e19917c6c24e8729ea03f8a33934d9f524 (patch) | |
| tree | 197c1cc370e71ef32550b8212333aec319468daa | |
| parent | 9247f165ff8e46db4e3635028cc030f30086f414 (diff) | |
| download | bcm5719-llvm-46ed25e19917c6c24e8729ea03f8a33934d9f524.tar.gz bcm5719-llvm-46ed25e19917c6c24e8729ea03f8a33934d9f524.zip | |
[windows] Remove CHECK for strdup symbol that comes from the CRT
llvm-symbolizer isn't symbolizing it for some reason. I'll investigate.
llvm-svn: 244629
| -rw-r--r-- | compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc b/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc index edb1f2f9924..371053480d2 100644 --- a/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc +++ b/compiler-rt/test/asan/TestCases/Windows/intercept_strdup.cc @@ -21,7 +21,8 @@ int main() { // CHECK: [[ADDR]] is located 1 bytes to the left of 6-byte region // CHECK: allocated by thread T0 here: // CHECK: {{#0 .* malloc }} -// CHECK: {{#1 .*strdup}} -// CHECK: {{#2 .* main .*}}intercept_strdup.cc:[[@LINE-16]] +// FIXME: llvm-symbolizer can't find strdup in the CRT. +// CHECKX: {{#1 .*strdup}} +// CHECK: {{#2 .* main .*}}intercept_strdup.cc:[[@LINE-17]] free(ptr); } |

