[compiler-rt] 5e04b53 - [compiler-rt] Try again 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 15:49:35 PDT 2020


Author: Daniel Sanders
Date: 2020-09-04T15:49:11-07:00
New Revision: 5e04b539c835cdc810cf0f75e87ca0c9b81d00e4

URL: https://github.com/llvm/llvm-project/commit/5e04b539c835cdc810cf0f75e87ca0c9b81d00e4
DIFF: https://github.com/llvm/llvm-project/commit/5e04b539c835cdc810cf0f75e87ca0c9b81d00e4.diff

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

One check was missed on the previous attempt

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 958d7777111c..d72b0ba8a8bb 100644
--- a/compiler-rt/test/asan/TestCases/Darwin/cstring_section.c
+++ b/compiler-rt/test/asan/TestCases/Darwin/cstring_section.c
@@ -4,7 +4,7 @@
 // RUN: llvm-objdump -s %t | FileCheck %s
 
 // Check that "Hello.\n" is in __asan_cstring and not in __cstring.
-// CHECK: Contents of section __asan_cstring:
+// CHECK: Contents of section {{.*}}__asan_cstring:
 // CHECK: 48656c6c {{.*}} Hello.
 // CHECK: Contents of section {{.*}}__const:
 // CHECK-NOT: 48656c6c {{.*}} Hello.


        


More information about the llvm-commits mailing list