diff options
| author | Nomura <nomura.rh@gmail.com> | 2023-03-28 11:25:19 +0200 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-04-24 09:07:37 -0400 |
| commit | 18cfa545f03ddb6cb8378fdadec4f284aa7ea221 (patch) | |
| tree | d75c230d056ad9224087380d213e54a5ace40f87 /run_project_tests.py | |
| parent | bda799dff2dc4b5d607f0e822b12ed0e2db38fb7 (diff) | |
| download | meson-18cfa545f03ddb6cb8378fdadec4f284aa7ea221.tar.gz | |
Initial support for Metrowerks C/C++ compiler
Diffstat (limited to 'run_project_tests.py')
| -rwxr-xr-x | run_project_tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 448d559d2..bf8860862 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -212,7 +212,9 @@ class InstalledFile: suffix = '{}.{}'.format(suffix, '.'.join(self.version)) return p.with_suffix(suffix) elif self.typ == 'exe': - if env.machines.host.is_windows() or env.machines.host.is_cygwin(): + if 'mwcc' in canonical_compiler: + return p.with_suffix('.nef') + elif env.machines.host.is_windows() or env.machines.host.is_cygwin(): return p.with_suffix('.exe') elif self.typ == 'pdb': if self.version: |
