Add FreeBSD support to the address sanitizer's deep_stack_uaf.cc test case
authorViktor Kutuzov <vkutuzov@accesssoftek.com>
Fri, 1 Aug 2014 19:37:05 +0000 (19:37 +0000)
committerViktor Kutuzov <vkutuzov@accesssoftek.com>
Fri, 1 Aug 2014 19:37:05 +0000 (19:37 +0000)
Differential Revision: http://reviews.llvm.org/D4668

llvm-svn: 214544

compiler-rt/test/asan/TestCases/deep_stack_uaf.cc

index accb70c..69be106 100644 (file)
@@ -26,7 +26,10 @@ int main() {
   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>}}
 }