Disable JIT Tests for windows

This commit is contained in:
Afonso Bordado 2022-09-26 13:38:53 +01:00
parent 481484c141
commit 1878ca61bc

View File

@ -450,7 +450,8 @@ pub fn new(host_triple: String, target_triple: String) -> Self {
out_dir.push("out");
let is_native = host_triple == target_triple;
let jit_supported = target_triple.contains("x86_64") && is_native;
let jit_supported =
target_triple.contains("x86_64") && is_native && !host_triple.contains("windows");
let mut rust_flags = env::var("RUSTFLAGS").ok().unwrap_or("".to_string());
let mut run_wrapper = Vec::new();