From 0b88b2f7f4583f7503cbded79e57cd5aa8f46764 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 18 Aug 2021 04:11:15 +0530 Subject: Revert "Disable Rust + clangcl." This reverts commit 6c55fc5cb0f6f363d5221c9bd0c1fd1fc6f90f4a --- run_project_tests.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/run_project_tests.py b/run_project_tests.py index e1de2e3..e8e9e67 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -1006,12 +1006,6 @@ def has_broken_rustc() -> bool: mesonlib.windows_proof_rmtree(dirname.as_posix()) return pc.returncode != 0 -def has_broken_compiler_combination() -> bool: - # Clang-cl fails with Rust on the CI - if shutil.which('cl') is None and shutil.which('clang-cl'): - return True - return False - def should_skip_rust(backend: Backend) -> bool: if not shutil.which('rustc'): return True @@ -1020,8 +1014,6 @@ def should_skip_rust(backend: Backend) -> bool: if mesonlib.is_windows(): if has_broken_rustc(): return True - if has_broken_compiler_combination(): - return True return False def detect_tests_to_run(only: T.Dict[str, T.List[str]], use_tmp: bool) -> T.List[T.Tuple[str, T.List[TestDef], bool]]: -- cgit v1.1