diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-03-28 19:33:52 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-03-29 02:12:02 +0300 |
commit | 1c3191be55f0445d66ffc6cc7b94ba9837f00784 (patch) | |
tree | 9e0ac18411b3cefd9b02459d725b438044efaae8 /unittests/windowstests.py | |
parent | 479a84455f6b838e862b7b68b6edd8968dd8fe1c (diff) | |
download | meson-1c3191be55f0445d66ffc6cc7b94ba9837f00784.zip meson-1c3191be55f0445d66ffc6cc7b94ba9837f00784.tar.gz meson-1c3191be55f0445d66ffc6cc7b94ba9837f00784.tar.bz2 |
Condense test directory names.
Diffstat (limited to 'unittests/windowstests.py')
-rw-r--r-- | unittests/windowstests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/windowstests.py b/unittests/windowstests.py index d3ad932..7339ca8 100644 --- a/unittests/windowstests.py +++ b/unittests/windowstests.py @@ -169,7 +169,7 @@ class WindowsTests(BasePlatformTests): self.assertRebuiltTarget('prog_1') def test_msvc_cpp17(self): - testdir = os.path.join(self.unit_test_dir, '45 vscpp17') + testdir = os.path.join(self.unit_test_dir, '44 vscpp17') env = get_fake_env(testdir, self.builddir, self.prefix) cc = detect_c_compiler(env, MachineChoice.HOST) @@ -357,7 +357,7 @@ class WindowsTests(BasePlatformTests): raise SkipTest('C++ modules is only supported with Visual Studio.') if version_compare(os.environ['VSCMD_VER'], '<16.10.0'): raise SkipTest('C++ modules are only supported with VS 2019 Preview or newer.') - self.init(os.path.join(self.unit_test_dir, '86 cpp modules')) + self.init(os.path.join(self.unit_test_dir, '85 cpp modules')) self.build() def test_non_utf8_fails(self): |