Index: compiler-rt/trunk/test/asan/TestCases/deep_stack_uaf.cc =================================================================== --- compiler-rt/trunk/test/asan/TestCases/deep_stack_uaf.cc +++ compiler-rt/trunk/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>}} }