[PATCH] Add FreeBSD support to the address sanitizer's deep_stack_uaf.cc test case

Viktor Kutuzov vkutuzov at accesssoftek.com
Fri Jul 25 08:44:56 PDT 2014


Hi kcc, samsonov,

http://reviews.llvm.org/D4668

Files:
  test/asan/TestCases/deep_stack_uaf.cc

Index: test/asan/TestCases/deep_stack_uaf.cc
===================================================================
--- test/asan/TestCases/deep_stack_uaf.cc
+++ test/asan/TestCases/deep_stack_uaf.cc
@@ -26,7 +26,10 @@
   DeepFree<200>::free(x);
   return x[5];
   // CHECK: {{.*ERROR: AddressSanitizer: heap-use-after-free on address}}
-  // CHECK: DeepFree<36>
-  // CHECK: DeepFree<98>
-  // CHECK: DeepFree<115>
+  // The libcxxrt demangling procedure on FreeBSD 9.2 incorrectly appends
+  // extra 'E' characters to the end of template arguments; see:
+  // https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192115
+  // CHECK: {{DeepFree<36>|DeepFree<36E>}}
+  // CHECK: {{DeepFree<98>|DeepFree<98E>}}
+  // CHECK: {{DeepFree<115>|DeepFree<115E>}}
 }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D4668.11881.patch
Type: text/x-patch
Size: 754 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140725/35acce22/attachment.bin>


More information about the llvm-commits mailing list