about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-06-26 00:39:17 -0700
committerGitHub <noreply@github.com>2020-06-26 00:39:17 -0700
commit91a638d79447656d8af79e7baa6c7f31ad895b35 (patch)
treecf4f04ebe8a032048d2461dac3e1ee4a44b06963 /src/liballoc
parent97ccd9706885d801990372fb88c4ab52817338b9 (diff)
parent5c88b5172f3b00c838a1ce825f67d28f0ff01b65 (diff)
downloadrust-91a638d79447656d8af79e7baa6c7f31ad895b35.tar.gz
rust-91a638d79447656d8af79e7baa6c7f31ad895b35.zip
Rollup merge of #73729 - nellshamrell:disable-collectionsbenches-android, r=sfackler
disable collectionbenches for android

Fixes #73535

Signed-off-by: Nell Shamrell <nellshamrell@gmail.com>
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/benches/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/liballoc/benches/lib.rs b/src/liballoc/benches/lib.rs
index f31717d9fd5..608eafc88d2 100644
--- a/src/liballoc/benches/lib.rs
+++ b/src/liballoc/benches/lib.rs
@@ -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)]