aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com>2019-05-02 16:26:51 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2019-05-02 23:26:51 +0300
commit06bfc2dab61c5bf79265a8db777b02732ee86ecf (patch)
tree0ed6065a804d972c950826b86e1241ed86b759ce /run_project_tests.py
parent16463046b10818910da72d892d53663496179606 (diff)
downloadmeson-06bfc2dab61c5bf79265a8db777b02732ee86ecf.zip
meson-06bfc2dab61c5bf79265a8db777b02732ee86ecf.tar.gz
meson-06bfc2dab61c5bf79265a8db777b02732ee86ecf.tar.bz2
per-target manual specification of link_language
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index c1d42fc..29716aa 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -505,6 +505,10 @@ def skippable(suite, test):
if test.endswith('netcdf'):
return True
+ # MSVC doesn't link with GFortran
+ if test.endswith('14 fortran links c'):
+ return True
+
# No frameworks test should be skipped on linux CI, as we expect all
# prerequisites to be installed
if mesonlib.is_linux():