summaryrefslogtreecommitdiff
path: root/test/cfi
diff options
context:
space:
mode:
authorVlad Tsyrklevich <vlad@tsyrklevich.net>2018-06-27 00:31:17 +0000
committerVlad Tsyrklevich <vlad@tsyrklevich.net>2018-06-27 00:31:17 +0000
commit4220bb4e7b04b09bef542d1db0d39f5d693c3811 (patch)
treebd697c4e5906c81bdabb70ae6665c6ac00928922 /test/cfi
parentb36fc83e6f6a1482499e471a4755e8f0aa76227a (diff)
Fix another bot broken by r335644
The android sanitizer bot can't resolve the function name in the DSO and it's not relevant to the test. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@335693 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/cfi')
-rw-r--r--test/cfi/cross-dso-diagnostic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cfi/cross-dso-diagnostic.cpp b/test/cfi/cross-dso-diagnostic.cpp
index 7a28d2fd1..e13248132 100644
--- a/test/cfi/cross-dso-diagnostic.cpp
+++ b/test/cfi/cross-dso-diagnostic.cpp
@@ -27,7 +27,7 @@ int main(int argc, char *argv[]) {
void *handle = dlopen(argv[1], RTLD_NOW);
// CHECK: runtime error: control flow integrity check for type 'void *()' failed during indirect function call
- // CHECK: dso_symbol defined here
+ // CHECK: {{.*}} defined here
// CHECK: check failed in {{.*}}_exe_suffix, destination function located in {{.*}}_dso_suffix
void* (*fp)(void) =
reinterpret_cast<void*(*)(void)>(dlsym(handle, "dso_symbol"));