[compiler-rt] 1eae19a - [compiler-rt] Try to correct test after 3f1a9b7eca0 added segment names to objdump output

Daniel Sanders via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 4 12:25:18 PDT 2020


Author: Daniel Sanders
Date: 2020-09-04T12:24:46-07:00
New Revision: 1eae19a87f5432a60020d5a6affb0dc28a2a661b

URL: https://github.com/llvm/llvm-project/commit/1eae19a87f5432a60020d5a6affb0dc28a2a661b
DIFF: https://github.com/llvm/llvm-project/commit/1eae19a87f5432a60020d5a6affb0dc28a2a661b.diff

LOG: [compiler-rt] Try to correct test after 3f1a9b7eca0 added segment names to objdump output

Added: 
    

Modified: 
    compiler-rt/test/asan/TestCases/Darwin/cstring_section.c

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/asan/TestCases/Darwin/cstring_section.c b/compiler-rt/test/asan/TestCases/Darwin/cstring_section.c
index 952d6fcdd465..958d7777111c 100644
--- a/compiler-rt/test/asan/TestCases/Darwin/cstring_section.c
+++ b/compiler-rt/test/asan/TestCases/Darwin/cstring_section.c
@@ -6,9 +6,9 @@
 // Check that "Hello.\n" is in __asan_cstring and not in __cstring.
 // CHECK: Contents of section __asan_cstring:
 // CHECK: 48656c6c {{.*}} Hello.
-// CHECK: Contents of section __const:
+// CHECK: Contents of section {{.*}}__const:
 // CHECK-NOT: 48656c6c {{.*}} Hello.
-// CHECK: Contents of section __cstring:
+// CHECK: Contents of section {{.*}}__cstring:
 // CHECK-NOT: 48656c6c {{.*}} Hello.
 
 int main(int argc, char *argv[]) {


        


More information about the llvm-commits mailing list