Skip to content

Commit 5417225

Browse files
committed
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. llvm-svn: 335693
1 parent 839cbc8 commit 5417225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/test/cfi/cross-dso-diagnostic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int main(int argc, char *argv[]) {
2727
void *handle = dlopen(argv[1], RTLD_NOW);
2828

2929
// CHECK: runtime error: control flow integrity check for type 'void *()' failed during indirect function call
30-
// CHECK: dso_symbol defined here
30+
// CHECK: {{.*}} defined here
3131
// CHECK: check failed in {{.*}}_exe_suffix, destination function located in {{.*}}_dso_suffix
3232
void* (*fp)(void) =
3333
reinterpret_cast<void*(*)(void)>(dlsym(handle, "dso_symbol"));

0 commit comments

Comments
 (0)