[llvm] 7e61c68 - [LLVM][objcopy] Update Arm XFAIL in update section test

David Spickett via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 16 03:00:29 PST 2022


Author: David Spickett
Date: 2022-12-16T10:59:56Z
New Revision: 7e61c68174ccf2f00bff9807310d313c287179ee

URL: https://github.com/llvm/llvm-project/commit/7e61c68174ccf2f00bff9807310d313c287179ee
DIFF: https://github.com/llvm/llvm-project/commit/7e61c68174ccf2f00bff9807310d313c287179ee.diff

LOG: [LLVM][objcopy] Update Arm XFAIL in update section test

a1b4e13cff2a792571927ee1fc6eebb05e40fae9 updated this to use
the target= syntax.

However the triple for our Arm bots is usually like:
armv8l-unknown-linux-gnueabihf

With "eabihf" on the end. I assume before we just checked for
"linux-gnu" being in the triple at all but now it is a proper
regex match.

Add .* on the end to account for the ABI tag on the end.

Added: 
    

Modified: 
    llvm/test/tools/llvm-objcopy/ELF/update-section.test

Removed: 
    


################################################################################
diff  --git a/llvm/test/tools/llvm-objcopy/ELF/update-section.test b/llvm/test/tools/llvm-objcopy/ELF/update-section.test
index 58f31c6b02a26..ecd108b19bb9c 100644
--- a/llvm/test/tools/llvm-objcopy/ELF/update-section.test
+++ b/llvm/test/tools/llvm-objcopy/ELF/update-section.test
@@ -1,4 +1,4 @@
-# XFAIL: target={{arm.*linux-gnu}}
+# XFAIL: target={{arm.*linux-gnu.*}}
 # REQUIRES: x86-registered-target
 
 # RUN: yaml2obj %s -o %t


        


More information about the llvm-commits mailing list