diff --git a/tokio-executor/benches/blocking.rs b/tokio-executor/benches/blocking.rs index 6efdf4488..ceb563185 100644 --- a/tokio-executor/benches/blocking.rs +++ b/tokio-executor/benches/blocking.rs @@ -1,3 +1,4 @@ +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)] diff --git a/tokio-executor/benches/threadpool.rs b/tokio-executor/benches/threadpool.rs index 3e106a3fe..56617a59f 100644 --- a/tokio-executor/benches/threadpool.rs +++ b/tokio-executor/benches/threadpool.rs @@ -1,3 +1,4 @@ +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)] diff --git a/tokio-executor/benches/threadpool_depth.rs b/tokio-executor/benches/threadpool_depth.rs index 042d2d782..e6d9183d3 100644 --- a/tokio-executor/benches/threadpool_depth.rs +++ b/tokio-executor/benches/threadpool_depth.rs @@ -1,3 +1,4 @@ +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)] diff --git a/tokio-sync/benches/mpsc.rs b/tokio-sync/benches/mpsc.rs index 5e05f6687..95d8e5c7c 100644 --- a/tokio-sync/benches/mpsc.rs +++ b/tokio-sync/benches/mpsc.rs @@ -1,3 +1,4 @@ +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)] diff --git a/tokio-sync/benches/oneshot.rs b/tokio-sync/benches/oneshot.rs index d2f7b3795..b2f37805a 100644 --- a/tokio-sync/benches/oneshot.rs +++ b/tokio-sync/benches/oneshot.rs @@ -1,3 +1,4 @@ +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)] diff --git a/tokio/benches/latency.rs b/tokio/benches/latency.rs index 0baa1c4ac..b44335fde 100644 --- a/tokio/benches/latency.rs +++ b/tokio/benches/latency.rs @@ -1,3 +1,4 @@ +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)] diff --git a/tokio/benches/mio-ops.rs b/tokio/benches/mio-ops.rs index 5a77f1b7e..8aedbfd8e 100644 --- a/tokio/benches/mio-ops.rs +++ b/tokio/benches/mio-ops.rs @@ -1,5 +1,6 @@ // Measure cost of different operations // to get a sense of performance tradeoffs +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)] diff --git a/tokio/benches/tcp.rs b/tokio/benches/tcp.rs index ef53b7924..f9a4a03b1 100644 --- a/tokio/benches/tcp.rs +++ b/tokio/benches/tcp.rs @@ -1,3 +1,4 @@ +#![cfg(feature = "broken")] #![feature(test)] #![warn(rust_2018_idioms)]