aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorMat Cross <mathewc@nag.co.uk>2021-08-22 10:35:49 +0100
committerEli Schwartz <eschwartz93@gmail.com>2021-09-10 16:08:57 -0400
commit174bc1c7861c8def1ad97d78d58147429c27be17 (patch)
tree87dcc86e081364789ddf35c52a9a6d2faebe0bf8 /run_project_tests.py
parent436a257c50de2b885a6483af3c708c289e7d986f (diff)
downloadmeson-174bc1c7861c8def1ad97d78d58147429c27be17.zip
meson-174bc1c7861c8def1ad97d78d58147429c27be17.tar.gz
meson-174bc1c7861c8def1ad97d78d58147429c27be17.tar.bz2
Presence of nagfor signifies that Fortran tests can be run.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 5768f0c..5c7777e 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -1050,6 +1050,7 @@ def detect_tests_to_run(only: T.Dict[str, T.List[str]], use_tmp: bool) -> T.List
skip_fortran = not(shutil.which('gfortran') or
shutil.which('flang') or
shutil.which('pgfortran') or
+ shutil.which('nagfor') or
shutil.which('ifort'))
class TestCategory: