aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun_project_tests.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 7896ee5..e1de2e3 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -1007,10 +1007,7 @@ def has_broken_rustc() -> bool:
return pc.returncode != 0
def has_broken_compiler_combination() -> bool:
- # Rust and vs2017 do not work together. But only with 32 bits.
- if os.environ.get('VisualStudioVersion') == '15.0' and os.environ.get('Platform') == 'x86':
- return True
- # Clang-cl also fails with Rust.
+ # Clang-cl fails with Rust on the CI
if shutil.which('cl') is None and shutil.which('clang-cl'):
return True
return False