[libcxx-commits] [libcxx] ad15428 - [NFC][libc++][test] loosen XFAIL condition for setfill_wchar_max.pass.cpp

David Tenty via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jul 17 19:41:42 PDT 2024


Author: David Tenty
Date: 2024-07-17T22:41:36-04:00
New Revision: ad154281230d83ee551e12d5be48bb956ef47ed3

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

LOG: [NFC][libc++][test] loosen XFAIL condition for setfill_wchar_max.pass.cpp

So we can also match aarch64 triples which have four components instead of three when disabling the test, which the case on some buildbots.

Follow on to #89305

Added: 
    

Modified: 
    libcxx/test/std/input.output/iostream.format/std.manip/setfill_wchar_max.pass.cpp

Removed: 
    


################################################################################
diff  --git a/libcxx/test/std/input.output/iostream.format/std.manip/setfill_wchar_max.pass.cpp b/libcxx/test/std/input.output/iostream.format/std.manip/setfill_wchar_max.pass.cpp
index f22850877dd62..d220a5c36a23b 100644
--- a/libcxx/test/std/input.output/iostream.format/std.manip/setfill_wchar_max.pass.cpp
+++ b/libcxx/test/std/input.output/iostream.format/std.manip/setfill_wchar_max.pass.cpp
@@ -15,8 +15,8 @@
 // version 2 implementation fixes the problem.
 
 // XFAIL: target={{.*}}-windows{{.*}} && libcpp-abi-version=1
-// XFAIL: target=armv{{7|8}}l-linux-gnueabihf && libcpp-abi-version=1
-// XFAIL: target=aarch64-linux-gnu && libcpp-abi-version=1
+// XFAIL: target=armv{{7|8}}l{{.*}}-linux-gnueabihf && libcpp-abi-version=1
+// XFAIL: target=aarch64{{.*}}-linux-gnu && libcpp-abi-version=1
 
 #include <iomanip>
 #include <ostream>


        


More information about the libcxx-commits mailing list