[llvm] r361993 - Yet another attempt to fix buildbot after r361949

Eugene Leviant via llvm-commits llvm-commits at lists.llvm.org
Wed May 29 10:14:48 PDT 2019


Author: evgeny777
Date: Wed May 29 10:14:48 2019
New Revision: 361993

URL: http://llvm.org/viewvc/llvm-project?rev=361993&view=rev
Log:
Yet another attempt to fix buildbot after r361949

Looks like %p format specifier of createStringError behaves
differently on different platforms

Modified:
    llvm/trunk/test/tools/llvm-objcopy/ELF/ihex-writer.test

Modified: llvm/trunk/test/tools/llvm-objcopy/ELF/ihex-writer.test
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/llvm-objcopy/ELF/ihex-writer.test?rev=361993&r1=361992&r2=361993&view=diff
==============================================================================
--- llvm/trunk/test/tools/llvm-objcopy/ELF/ihex-writer.test (original)
+++ llvm/trunk/test/tools/llvm-objcopy/ELF/ihex-writer.test Wed May 29 10:14:48 2019
@@ -67,8 +67,8 @@
 # SIGN_EXTENDED-NEXT: :051000000001020304E1
 # SIGN_EXTENDED-NEXT: :00000001FF
 
-# BAD-ADDR: error: {{.*}}: Section '.text2' address range [0xfffffff8, 0x100000000] is not 32 bit
-# BAD-ADDR2: error: {{.*}}: Section '.text3' address range [0xffffffff0, 0xffffffff4] is not 32 bit
+# BAD-ADDR: error: {{.*}}: Section '.text2' address range [{{.*}}, {{.*}}] is not 32 bit
+# BAD-ADDR2: error: {{.*}}: Section '.text3' address range [{{.*}}, {{.*}}] is not 32 bit
 
 # There shouldn't be 'ExtendedAddr' nor 'Data' records
 # ZERO_SIZE_SEC-NOT:  :02000004
@@ -78,4 +78,4 @@
 # START1: :040000030000FFFFFB
 # START2: :0400000500100000E7
 # START3: :040000058000100067
-# BAD-START: error: {{.*}}: Entry point address 0xf00000000 overflows 32 bits
+# BAD-START: error: {{.*}}: Entry point address {{.*}} overflows 32 bits




More information about the llvm-commits mailing list