diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2022-08-25 16:34:28 +0200 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2022-08-25 16:34:28 +0200 |
| commit | 53f4bb935213a7d3f50a0317eac23cebe9bdab54 (patch) | |
| tree | ae549f3e7b769acbfaaeae8d5eb4f5b7f27dbca8 | |
| parent | e9d1a0a7b0b28dd422f1a790ccde532acafbf193 (diff) | |
| parent | d9bbac069b1c8f235bcf2415a47b783fb945b4a7 (diff) | |
| download | rust-53f4bb935213a7d3f50a0317eac23cebe9bdab54.tar.gz rust-53f4bb935213a7d3f50a0317eac23cebe9bdab54.zip | |
Sync from rust 4d45b0745ab227feb9000bc15713ade4b99241ea
| -rw-r--r-- | build_system/tests.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build_system/tests.rs b/build_system/tests.rs index dc83b10958e..e21397cece8 100644 --- a/build_system/tests.rs +++ b/build_system/tests.rs @@ -465,7 +465,8 @@ impl TestRunner { out_dir.push("out"); let is_native = host_triple == target_triple; - let jit_supported = target_triple.contains("x86_64") && is_native && !host_triple.contains("windows"); + 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(); |
