summaryrefslogtreecommitdiffstats
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorFilipe Cabecinhas <me@filcab.net>2015-01-30 18:25:59 +0000
committerFilipe Cabecinhas <me@filcab.net>2015-01-30 18:25:59 +0000
commit03305e4f1057cfc3b7fada39a5a82d6189271d78 (patch)
treee7ee5664ab1cebed4e404513bf6f0d44f52a1231 /test/lit.cfg
parente43dd25145f29008553f9f32091b56f08b181a53 (diff)
Special-case the PS4 SDK for a clang test
Original patch by Gao Yunzhong! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@227593 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 0d6fb91b3b..4df79db9b6 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -404,6 +404,10 @@ if not re.match(r'.*-win32$', config.target_triple):
if not re.match(r'.*-win32$', config.target_triple):
config.available_features.add('non-ms-sdk')
+# Not set on native PS4 environment.
+if '*-scei-ps4' != config.target_triple:
+ config.available_features.add('non-ps4-sdk')
+
# [PR8833] LLP64-incompatible tests
if not re.match(r'^x86_64.*-(win32|mingw32|windows-gnu)$', config.target_triple):
config.available_features.add('LP64')