From ecd8c7e4af52109a6f319bb99d50f1a615da784d Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 15 Mar 2021 19:36:46 +0000 Subject: Update VS module version check. --- run_unittests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_unittests.py') diff --git a/run_unittests.py b/run_unittests.py index 81342615c..a381ae525 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -6230,7 +6230,7 @@ class WindowsTests(BasePlatformTests): raise unittest.SkipTest(f'C++ modules only work with the Ninja backend (not {self.backend.name}).') if 'VSCMD_VER' not in os.environ: raise unittest.SkipTest('C++ modules is only supported with Visual Studio.') - if version_compare(os.environ['VSCMD_VER'], '<16.9.0'): + if version_compare(os.environ['VSCMD_VER'], '<16.10.0'): raise unittest.SkipTest('C++ modules are only supported with VS 2019 Preview or newer.') self.init(os.path.join(self.unit_test_dir, '87 cpp modules')) self.build() -- cgit v1.2.3