mirror of https://github.com/rust-lang/rust.git
disable benches in Miri
This commit is contained in:
parent
7b89445cc3
commit
c0b564b767
|
@ -1,6 +1,8 @@
|
|||
// Disabling on android for the time being
|
||||
// See https://github.com/rust-lang/rust/issues/73535#event-3477699747
|
||||
#![cfg(not(target_os = "android"))]
|
||||
// Disabling in Miri as these would take too long.
|
||||
#![cfg(not(miri))]
|
||||
#![feature(btree_extract_if)]
|
||||
#![feature(iter_next_chunk)]
|
||||
#![feature(repr_simd)]
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
// wasm32 does not support benches (no time).
|
||||
#![cfg(not(target_arch = "wasm32"))]
|
||||
// Disabling in Miri as these would take too long.
|
||||
#![cfg(not(miri))]
|
||||
#![feature(flt2dec)]
|
||||
#![feature(test)]
|
||||
#![feature(trusted_random_access)]
|
||||
|
|
Loading…
Reference in New Issue