Rollup merge of #73729 - nellshamrell:disable-collectionsbenches-android, r=sfackler

disable collectionbenches for android

Fixes #73535

Signed-off-by: Nell Shamrell <nellshamrell@gmail.com>
This commit is contained in:
Manish Goregaokar 2020-06-26 00:39:17 -07:00 committed by GitHub
commit 91a638d794
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,6 @@
// Disabling on android for the time being
// See https://github.com/rust-lang/rust/issues/73535#event-3477699747
#![cfg(not(target_os = "android"))]
#![feature(btree_drain_filter)]
#![feature(map_first_last)]
#![feature(repr_simd)]

View file

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