From 8417c1a20fdd74bf2cc7d15f4bc52460b02d3ce4 Mon Sep 17 00:00:00 2001 From: Zachary Michaels Date: Thu, 9 Aug 2018 10:04:57 -0700 Subject: Add support for c++2a and gnu++2a --- run_unittests.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'run_unittests.py') diff --git a/run_unittests.py b/run_unittests.py index e0f2fe5..8e3da7d 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3113,6 +3113,10 @@ class LinuxlikeTests(BasePlatformTests): (version_compare(compiler.version, '<5.0.0') or (compiler.clang_type == mesonbuild.compilers.CLANG_OSX and version_compare(compiler.version, '<9.2')))): 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')))): + continue std_opt = '{}={}'.format(lang_std, v) self.init(testdir, ['-D' + std_opt]) cmd = self.get_compdb()[0]['command'] -- cgit v1.1