forked from OSchip/llvm-project
clang lit.cfg: Fix a bug pointed by Sean Silva
llvm-svn: 227894
This commit is contained in:
parent
ec80d97c77
commit
10ff1333e4
|
@ -405,7 +405,7 @@ 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:
|
||||
if not re.match(r'.*-scei-ps4', config.target_triple):
|
||||
config.available_features.add('non-ps4-sdk')
|
||||
|
||||
# [PR8833] LLP64-incompatible tests
|
||||
|
|
Loading…
Reference in New Issue