aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-05-03 13:55:01 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-13 11:22:31 -0700
commitf5ea341319552e84124f10d8306b4b10f89d72ad (patch)
tree4f92a565e5940a60e5f6abb648f35951cba4101c /run_project_tests.py
parentfa54f05f09da9b1878d51f35535e54e0222c4f1e (diff)
downloadmeson-f5ea341319552e84124f10d8306b4b10f89d72ad.zip
meson-f5ea341319552e84124f10d8306b4b10f89d72ad.tar.gz
meson-f5ea341319552e84124f10d8306b4b10f89d72ad.tar.bz2
compilers/clike: ICL needs msvc workarounds in has_function
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index b9077c9..02ceb04 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -120,7 +120,7 @@ def get_relative_files_list_from_dir(fromdir):
def platform_fix_name(fname, compiler, env):
# canonicalize compiler
- if compiler == 'clang-cl':
+ if compiler in {'clang-cl', 'intel-cl'}:
canonical_compiler = 'msvc'
else:
canonical_compiler = compiler