diff options
| author | Nell Shamrell <nellshamrell@gmail.com> | 2020-06-25 11:13:22 -0700 |
|---|---|---|
| committer | Nell Shamrell <nellshamrell@gmail.com> | 2020-06-25 11:14:16 -0700 |
| commit | f13d89eb2ed30b26dea577985393c58e6dbd0bca (patch) | |
| tree | 594d75658086ccb95d7347de5565073a4351ac25 | |
| parent | 67100f61e62a86f2bf9e38552ee138e231eddc74 (diff) | |
| download | rust-f13d89eb2ed30b26dea577985393c58e6dbd0bca.tar.gz rust-f13d89eb2ed30b26dea577985393c58e6dbd0bca.zip | |
disable collectionbenches for android
Signed-off-by: Nell Shamrell <nellshamrell@gmail.com>
| -rw-r--r-- | src/liballoc/benches/lib.rs | 3 |
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)] |
