summaryrefslogtreecommitdiffstats
path: root/benches/mio-ops.rs
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-03-06 14:40:09 -0800
committerGitHub <noreply@github.com>2018-03-06 14:40:09 -0800
commit1f91a890b4ff6f3707970d1c15350469f72c1a68 (patch)
treef9036b50a9ea1d106983520e3c0c06c5b8888958 /benches/mio-ops.rs
parent869615f1d220e522af025d52be0b846570fed63d (diff)
Fix benches (#188)
Some of the benchhmarks were broken and/or using deprecated APIs. This patch updates the benches and requires them all to compile without warnings in order to pass CI.
Diffstat (limited to 'benches/mio-ops.rs')
-rw-r--r--benches/mio-ops.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/benches/mio-ops.rs b/benches/mio-ops.rs
index 6a74879c..6a71bebf 100644
--- a/benches/mio-ops.rs
+++ b/benches/mio-ops.rs
@@ -1,6 +1,7 @@
// Measure cost of different operations
// to get a sense of performance tradeoffs
#![feature(test)]
+#![deny(warnings)]
extern crate test;
extern crate mio;