diff options
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index a6cada3..302ca36 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -218,7 +218,7 @@ def platform_fix_name(fname): if fname.endswith('?exe'): fname = fname[:-4] - if mesonlib.is_windows(): + if mesonlib.is_windows() or mesonlib.is_cygwin(): return fname + '.exe' return fname |