summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSerge Guelton <sguelton@redhat.com>2019-07-18 13:13:29 +0000
committerSerge Guelton <sguelton@redhat.com>2019-07-18 13:13:29 +0000
commit8259594701f0633796ed7f82ba1ce5484ddd1498 (patch)
treefd00e8a1ea8f4fdd420a6cf820ba7d5a6574d228 /test
parent41522da1fb978b3d17e9fbf84a0f490ab6855c57 (diff)
downloadcompiler-rt-8259594701f0633796ed7f82ba1ce5484ddd1498.tar.gz
Relax regexp to detect failed interception by asan
This should fix failed detection on aarch64/ppc64/thumbv8... git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@366432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/asan/TestCases/Linux/dlopen-mixed-c-cxx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asan/TestCases/Linux/dlopen-mixed-c-cxx.c b/test/asan/TestCases/Linux/dlopen-mixed-c-cxx.c
index 8bce907ef..d380fbf72 100644
--- a/test/asan/TestCases/Linux/dlopen-mixed-c-cxx.c
+++ b/test/asan/TestCases/Linux/dlopen-mixed-c-cxx.c
@@ -2,7 +2,7 @@
// RUN: %clang_asan %s -o %t.out -ldl
// RUN: ASAN_OPTIONS=verbosity=1 not %t.out %t.so 2>&1 | FileCheck %s
//
-// CHECK: AddressSanitizer: failed to intercept '__cxa_throw'
+// CHECK: {{.*}}AddressSanitizer: failed to intercept '__cxa_{{.*}}throw{{.*}}'
//
// dlopen() can not be intercepted on Android
// UNSUPPORTED: android