[compiler-rt] r335693 - Fix another bot broken by r335644

Vlad Tsyrklevich via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 26 17:31:17 PDT 2018


Author: vlad.tsyrklevich
Date: Tue Jun 26 17:31:17 2018
New Revision: 335693

URL: http://llvm.org/viewvc/llvm-project?rev=335693&view=rev
Log:
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.

Modified:
    compiler-rt/trunk/test/cfi/cross-dso-diagnostic.cpp

Modified: compiler-rt/trunk/test/cfi/cross-dso-diagnostic.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/cfi/cross-dso-diagnostic.cpp?rev=335693&r1=335692&r2=335693&view=diff
==============================================================================
--- compiler-rt/trunk/test/cfi/cross-dso-diagnostic.cpp (original)
+++ compiler-rt/trunk/test/cfi/cross-dso-diagnostic.cpp Tue Jun 26 17:31:17 2018
@@ -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"));




More information about the llvm-commits mailing list