aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index f91ec85..6a42681 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -40,7 +40,7 @@ def guess_backend(backend, msbuild_exe: str):
if backend is None:
if (msbuild_exe is not None and
mesonlib.is_windows() and not
- (os.environ.get('CC') == 'icl' or os.environ.get('CXX') == 'icl' or os.environ.get('FC') == 'ifort')) :
+ (os.environ.get('CC') == 'icl' or os.environ.get('CXX') == 'icl' or os.environ.get('FC') == 'ifort')):
backend = 'vs' # Meson will auto-detect VS version to use
else:
backend = 'ninja'