Skip to content

Commit cf5c360

Browse files
committed
Export stats::Summary from libtest
1 parent a5e7f0c commit cf5c360

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/libtest/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@
1717
#![feature(test)]
1818

1919
extern crate libtest;
20+
21+
// FIXME: we should be more explicit about the exact APIs that we
22+
// export to users.
2023
pub use libtest::{
2124
assert_test_result, filter_tests, parse_opts, run_test, test_main, test_main_static,
2225
Bencher, DynTestFn, DynTestName, Metric, MetricMap, Options, RunIgnored, ShouldPanic,
2326
StaticBenchFn, StaticTestFn, StaticTestName, TestDesc, TestDescAndFn, TestName, TestOpts,
24-
TestResult, TrFailed, TrFailedMsg, TrIgnored, TrOk,
27+
TestResult, TrFailed, TrFailedMsg, TrIgnored, TrOk, stats::Summary
2528
};
2629

2730
/// A function that is opaque to the optimizer, to allow benchmarks to

0 commit comments

Comments
 (0)