Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 97ccd97 + 5c88b51 commit 91a638dCopy full SHA for 91a638d
src/liballoc/benches/lib.rs
@@ -1,3 +1,6 @@
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
#![feature(btree_drain_filter)]
5
#![feature(map_first_last)]
6
#![feature(repr_simd)]
src/tools/tidy/src/pal.rs
@@ -67,6 +67,7 @@ const EXCEPTION_PATHS: &[&str] = &[
67
// std testing crates, okay for now at least
68
"src/libcore/tests",
69
"src/liballoc/tests/lib.rs",
70
+ "src/liballoc/benches/lib.rs",
71
// The `VaList` implementation must have platform specific code.
72
// The Windows implementation of a `va_list` is always a character
73
// pointer regardless of the target architecture. As a result,
0 commit comments