Skip to content

Commit

Permalink
Add missing explicit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed Mar 19, 2019
1 parent 25c8f61 commit a5e7f0c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/libtest/lib.rs
Expand Up @@ -17,7 +17,12 @@
#![feature(test)]

extern crate libtest;
pub use libtest::{test_main_static, TestDescAndFn, StaticTestFn, StaticBenchFn, Options};
pub use libtest::{
assert_test_result, filter_tests, parse_opts, run_test, test_main, test_main_static,
Bencher, DynTestFn, DynTestName, Metric, MetricMap, Options, RunIgnored, ShouldPanic,
StaticBenchFn, StaticTestFn, StaticTestName, TestDesc, TestDescAndFn, TestName, TestOpts,
TestResult, TrFailed, TrFailedMsg, TrIgnored, TrOk,
};

/// A function that is opaque to the optimizer, to allow benchmarks to
/// pretend to use outputs to assist in avoiding dead-code
Expand Down

0 comments on commit a5e7f0c

Please sign in to comment.