[compiler-rt] r244629 - [windows] Remove CHECK for strdup symbol that comes from the CRT
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 11 09:56:31 PDT 2015
Author: rnk
Date: Tue Aug 11 11:56:26 2015
New Revision: 244629
URL: http://llvm.org/viewvc/llvm-project?rev=244629&view=rev
Log:
[windows] Remove CHECK for strdup symbol that comes from the CRT
llvm-symbolizer isn't symbolizing it for some reason. I'll investigate.
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=244629&r1=244628&r2=244629&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc Tue Aug 11 11:56:26 2015
@@ -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);
}
More information about the llvm-commits
mailing list