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.
pull/7245/head
Dan Kegel 5 years ago
parent c82c74cae8
commit 25085483b9
  1. 3
      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

Loading…
Cancel
Save