about summary refs log tree commit diff
path: root/library/alloc/benches/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/alloc/benches/lib.rs')
-rw-r--r--library/alloc/benches/lib.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/alloc/benches/lib.rs b/library/alloc/benches/lib.rs
new file mode 100644
index 00000000000..608eafc88d2
--- /dev/null
+++ b/library/alloc/benches/lib.rs
@@ -0,0 +1,17 @@
+// 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)]
+#![feature(test)]
+
+extern crate test;
+
+mod btree;
+mod linked_list;
+mod slice;
+mod str;
+mod string;
+mod vec;
+mod vec_deque;