Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 1878ca6

Browse files
committed
Disable JIT Tests for windows
1 parent 481484c commit 1878ca6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build_system/tests.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,8 @@ impl TestRunner {
450450
out_dir.push("out");
451451

452452
let is_native = host_triple == target_triple;
453-
let jit_supported = target_triple.contains("x86_64") && is_native;
453+
let jit_supported =
454+
target_triple.contains("x86_64") && is_native && !host_triple.contains("windows");
454455

455456
let mut rust_flags = env::var("RUSTFLAGS").ok().unwrap_or("".to_string());
456457
let mut run_wrapper = Vec::new();

0 commit comments

Comments
 (0)