diff options
author | Zachary Michaels <mikezackles@gmail.com> | 2018-08-09 12:42:34 -0700 |
---|---|---|
committer | Zachary Michaels <mikezackles@gmail.com> | 2018-08-09 12:42:34 -0700 |
commit | b665db8bb89fd6c4f89f79686afde159e6ccd333 (patch) | |
tree | 99e558c3b18ca9a54206eb3550429a2178ab22b7 | |
parent | 695b325142ec84ab7e379abf5ff88df3162bb197 (diff) | |
download | meson-b665db8bb89fd6c4f89f79686afde159e6ccd333.tar.gz |
Try appleclang 9.1 for both c++17 and c++2a
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_unittests.py b/run_unittests.py index 9b3ddb135..b537c32de 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3111,11 +3111,11 @@ class LinuxlikeTests(BasePlatformTests): for v in compiler.get_options()[lang_std].choices: if (compiler.get_id() == 'clang' and '17' in v and (version_compare(compiler.version, '<5.0.0') or - (compiler.clang_type == mesonbuild.compilers.CLANG_OSX and version_compare(compiler.version, '<9.2')))): + (compiler.clang_type == mesonbuild.compilers.CLANG_OSX and version_compare(compiler.version, '<9.1')))): continue if (compiler.get_id() == 'clang' and '2a' in v and (version_compare(compiler.version, '<6.0.0') or - (compiler.clang_type == mesonbuild.compilers.CLANG_OSX and version_compare(compiler.version, '<9.2')))): + (compiler.clang_type == mesonbuild.compilers.CLANG_OSX and version_compare(compiler.version, '<9.1')))): continue if (compiler.get_id() == 'gcc' and '2a' in v and version_compare(compiler.version, '<8.0.0')): continue |