Skip to content

Commit 91a638d

Browse files
authored
Rollup merge of #73729 - nellshamrell:disable-collectionsbenches-android, r=sfackler
disable collectionbenches for android Fixes #73535 Signed-off-by: Nell Shamrell <[email protected]>
2 parents 97ccd97 + 5c88b51 commit 91a638d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/liballoc/benches/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -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"))]
14
#![feature(btree_drain_filter)]
25
#![feature(map_first_last)]
36
#![feature(repr_simd)]

src/tools/tidy/src/pal.rs

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ const EXCEPTION_PATHS: &[&str] = &[
6767
// std testing crates, okay for now at least
6868
"src/libcore/tests",
6969
"src/liballoc/tests/lib.rs",
70+
"src/liballoc/benches/lib.rs",
7071
// The `VaList` implementation must have platform specific code.
7172
// The Windows implementation of a `va_list` is always a character
7273
// pointer regardless of the target architecture. As a result,

0 commit comments

Comments
 (0)