aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDan Kegel <dank@kegel.com>2020-06-03 22:02:36 -0700
committerDan Kegel <dank@kegel.com>2020-06-05 14:15:32 -0700
commit25085483b90990f7c8a2da9a874719327bb1fb37 (patch)
tree465d93dbc19c14207828b076b2bc1855a7e74a4a /run_unittests.py
parentc82c74cae88a4614a71266f4825de16d167b979f (diff)
downloadmeson-25085483b90990f7c8a2da9a874719327bb1fb37.zip
meson-25085483b90990f7c8a2da9a874719327bb1fb37.tar.gz
meson-25085483b90990f7c8a2da9a874719327bb1fb37.tar.bz2
run_unittests.py: skip test_internal_include_order for now if forcing response files on msys2
That test looks at the compdb very carefully, but isn't yet set up to handle gcc responsefile quoting on windows, it seems.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 7e0c403..a6817c3 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -2432,6 +2432,9 @@ class AllPlatformTests(BasePlatformTests):
self.assertPathExists(exe2)
def test_internal_include_order(self):
+ if mesonbuild.environment.detect_msys2_arch() and ('MESON_RSP_THRESHOLD' in os.environ):
+ raise unittest.SkipTest('Test does not yet support gcc rsp files on msys2')
+
testdir = os.path.join(self.common_test_dir, '134 include order')
self.init(testdir)
execmd = fxecmd = None