From 18cfa545f03ddb6cb8378fdadec4f284aa7ea221 Mon Sep 17 00:00:00 2001 From: Nomura Date: Tue, 28 Mar 2023 11:25:19 +0200 Subject: Initial support for Metrowerks C/C++ compiler --- run_project_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'run_project_tests.py') 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: -- cgit v1.2.3