aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-07-30 01:25:22 -0400
committerMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-07-30 03:17:14 -0400
commitb5e9ab8ed02629c14050d86815fa2eb69c6425a2 (patch)
tree59ea2f9728bc202c472928e5abe826de0032e2e7 /run_tests.py
parent667cc80f7225930eb8b239683c8297a717a087d6 (diff)
downloadmeson-b5e9ab8ed02629c14050d86815fa2eb69c6425a2.zip
meson-b5e9ab8ed02629c14050d86815fa2eb69c6425a2.tar.gz
meson-b5e9ab8ed02629c14050d86815fa2eb69c6425a2.tar.bz2
fortran tests: non-gfortran compilers on Windows are best static libs
collapsed get_relative_files_list_from_dir to a one-liner via pathlib.Path
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'