diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-05-03 10:28:54 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-10 13:38:20 -0700 |
commit | c72fd1e33336b06a3d9ebe8ac52eb74aa057ecfb (patch) | |
tree | 671a25b9b032f063421cf002d9bcfc7995e39c53 | |
parent | ecc1f17f8ebe59b62ab2e593709c08123450bc8c (diff) | |
download | meson-c72fd1e33336b06a3d9ebe8ac52eb74aa057ecfb.zip meson-c72fd1e33336b06a3d9ebe8ac52eb74aa057ecfb.tar.gz meson-c72fd1e33336b06a3d9ebe8ac52eb74aa057ecfb.tar.bz2 |
run_unittests: ICL also doesn't do proper resource dependency detection
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index 7a7c006..8fe1fd5 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3994,7 +3994,7 @@ class WindowsTests(BasePlatformTests): # resource compiler depfile generation is not yet implemented for msvc env = get_fake_env(testdir, self.builddir, self.prefix) - depfile_works = env.detect_c_compiler(False).get_id() not in ['msvc', 'clang-cl'] + depfile_works = env.detect_c_compiler(False).get_id() not in {'msvc', 'clang-cl', 'intel-cl'} self.init(testdir) self.build() |