From 7e61c68174ccf2f00bff9807310d313c287179ee Mon Sep 17 00:00:00 2001 From: David Spickett Date: Fri, 16 Dec 2022 10:57:13 +0000 Subject: [PATCH] [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. --- llvm/test/tools/llvm-objcopy/ELF/update-section.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/tools/llvm-objcopy/ELF/update-section.test b/llvm/test/tools/llvm-objcopy/ELF/update-section.test index 58f31c6..ecd108b 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 -- 2.7.4