aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 54b25a5..27e588b 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -155,7 +155,12 @@ def platform_fix_name(fname, compiler, env):
if fname.startswith('?gcc:'):
fname = fname[5:]
- if compiler == 'cl' or fname.endswith('dll.a') and not mesonlib.for_cygwin(env.is_cross_build(), env):
+ if compiler == 'cl':
+ return None
+
+ if fname.startswith('?cygwin:'):
+ fname = fname[8:]
+ if compiler == 'cl' or not mesonlib.for_cygwin(env.is_cross_build(), env):
return None
return fname