diff options
author | Paul Robinson <paul.robinson@sony.com> | 2019-05-10 13:40:17 +0000 |
---|---|---|
committer | Paul Robinson <paul.robinson@sony.com> | 2019-05-10 13:40:17 +0000 |
commit | 4b66e0fd47c9be0ec53422508512d7dc84e7f872 (patch) | |
tree | bcd0ab1729afe41359f43a54b223c7eebd497f78 /clang/test/lit.cfg.py | |
parent | a67e387de8d5be79e920e8363006bc2672dd3b20 (diff) | |
download | bcm5719-llvm-4b66e0fd47c9be0ec53422508512d7dc84e7f872.tar.gz bcm5719-llvm-4b66e0fd47c9be0ec53422508512d7dc84e7f872.zip |
Replace lit feature keyword 'non-ms-sdk' with 'ms-sdk'; eliminate
'non-ps4-sdk' and use just 'ps4'.
llvm-svn: 360425
Diffstat (limited to 'clang/test/lit.cfg.py')
-rw-r--r-- | clang/test/lit.cfg.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/clang/test/lit.cfg.py b/clang/test/lit.cfg.py index 50c00f6a967..ec08cc1eeae 100644 --- a/clang/test/lit.cfg.py +++ b/clang/test/lit.cfg.py @@ -140,13 +140,9 @@ if is_filesystem_case_insensitive(): if os.path.exists('/dev/fd/0') and sys.platform not in ['cygwin']: config.available_features.add('dev-fd-fs') -# Not set on native MS environment. -if not re.match(r'.*-(windows-msvc)$', config.target_triple): - config.available_features.add('non-ms-sdk') - -# Not set on native PS4 environment. -if not re.match(r'.*-scei-ps4', config.target_triple): - config.available_features.add('non-ps4-sdk') +# Set on native MS environment. +if re.match(r'.*-(windows-msvc)$', config.target_triple): + config.available_features.add('ms-sdk') # [PR8833] LLP64-incompatible tests if not re.match(r'^x86_64.*-(windows-msvc|windows-gnu)$', config.target_triple): |