diff options
| author | gnzlbg <gonzalobg88@gmail.com> | 2019-03-04 18:06:07 +0100 |
|---|---|---|
| committer | gnzlbg <gonzalobg88@gmail.com> | 2019-03-19 13:58:48 +0100 |
| commit | a5e7f0c75b5db5c0ded0b46437ba17673cb98aa9 (patch) | |
| tree | c837a824171f2f43eaee9e7990071c2687c9b63c /src/libtest | |
| parent | 25c8f61a9f84ecd546dd53b6b891c53d7bcd246a (diff) | |
| download | rust-a5e7f0c75b5db5c0ded0b46437ba17673cb98aa9.tar.gz rust-a5e7f0c75b5db5c0ded0b46437ba17673cb98aa9.zip | |
Add missing explicit imports
Diffstat (limited to 'src/libtest')
| -rw-r--r-- | src/libtest/lib.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index c15ed308ff0..bd7f89c3f66 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -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 |
