[clang] dee009d - [lit] UNSUPPORTED ps4/ps5 => target={{.*-ps(4|5)}}

Paul Robinson via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 29 09:08:07 PST 2022


Author: Paul Robinson
Date: 2022-11-29T09:07:59-08:00
New Revision: dee009d3b5c71a340eb4ebb3cfb49f6015a789cc

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

LOG: [lit] UNSUPPORTED ps4/ps5 => target={{.*-ps(4|5)}}

Part of the project to eliminate special handling for triples in lit expressions.

Added: 
    

Modified: 
    clang/test/Driver/lld-repro.c
    clang/test/Driver/nostdincxx.cpp
    clang/test/Preprocessor/lang-std.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/Driver/lld-repro.c b/clang/test/Driver/lld-repro.c
index 1333f68d911e..9fc37d98cef6 100644
--- a/clang/test/Driver/lld-repro.c
+++ b/clang/test/Driver/lld-repro.c
@@ -1,5 +1,5 @@
 // REQUIRES: lld
-// UNSUPPORTED: ps4, ps5
+// UNSUPPORTED: target={{.*-ps(4|5)}}
 
 // RUN: echo "-nostartfiles -nostdlib -fuse-ld=lld -gen-reproducer=error -fcrash-diagnostics-dir=%t" \
 // RUN:   | sed -e 's/\\/\\\\/g' > %t.rsp

diff  --git a/clang/test/Driver/nostdincxx.cpp b/clang/test/Driver/nostdincxx.cpp
index e27bee8dc613..11fd59fab2c2 100644
--- a/clang/test/Driver/nostdincxx.cpp
+++ b/clang/test/Driver/nostdincxx.cpp
@@ -6,4 +6,4 @@
 #include <vector>
 
 // MSVC, PS4, PS5 have C++ headers in the same directory as C headers.
-// UNSUPPORTED: ms-sdk, ps4, ps5
+// UNSUPPORTED: ms-sdk, target={{.*-ps(4|5)}}

diff  --git a/clang/test/Preprocessor/lang-std.cpp b/clang/test/Preprocessor/lang-std.cpp
index e8260147f40e..86aeb9ad45d5 100644
--- a/clang/test/Preprocessor/lang-std.cpp
+++ b/clang/test/Preprocessor/lang-std.cpp
@@ -1,4 +1,4 @@
-// UNSUPPORTED: ps4, ps5
+// UNSUPPORTED: target={{.*-ps(4|5)}}
 /// Test default standards.
 /// PS4/PS5 default to gnu++14.
 


        


More information about the cfe-commits mailing list