We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b98d3 commit ff3fccdCopy full SHA for ff3fccd
library/alloc/benches/lib.rs
@@ -1,6 +1,8 @@
1
// Disabling on android for the time being
2
// See https://github.com/rust-lang/rust/issues/73535#event-3477699747
3
#![cfg(not(target_os = "android"))]
4
+// Disabling in Miri as these would take too long.
5
+#![cfg(not(miri))]
6
#![feature(btree_extract_if)]
7
#![feature(iter_next_chunk)]
8
#![feature(repr_simd)]
library/core/benches/lib.rs
@@ -1,5 +1,7 @@
// wasm32 does not support benches (no time).
#![cfg(not(target_arch = "wasm32"))]
#![feature(flt2dec)]
#![feature(test)]
#![feature(trusted_random_access)]
0 commit comments