diff options
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 2dff885..10dc8c6 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -114,7 +114,8 @@ def get_relative_files_list_from_dir(fromdir: Path) -> typing.List[Path]: def platform_fix_name(fname: str, compiler, env) -> str: # canonicalize compiler - if compiler in {'clang-cl', 'intel-cl'}: + if (compiler in {'clang-cl', 'intel-cl'} or + (env.machines.host.is_windows() and compiler == 'pgi')): canonical_compiler = 'msvc' else: canonical_compiler = compiler |