Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Public some types for compiletest_rs
  • Loading branch information
tesuji committed Oct 23, 2019
1 parent 7e0ef6e commit 557cbd0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/libtest/lib.rs
Expand Up @@ -34,8 +34,10 @@
pub use self::ColorConfig::*;
pub use self::types::*;
pub use self::types::TestName::*;
pub use self::options::{Options, ShouldPanic};
pub use self::options::{ColorConfig, Options, OutputFormat, RunIgnored, ShouldPanic};
pub use self::bench::{Bencher, black_box};
pub use self::console::run_tests_console;
pub use cli::TestOpts;

// Module to be used by rustc to compile tests in libtest
pub mod test {
Expand Down Expand Up @@ -84,9 +86,8 @@ mod tests;

use test_result::*;
use time::TestExecTime;
use options::{RunStrategy, Concurrent, RunIgnored, ColorConfig};
use options::{RunStrategy, Concurrent};
use event::{CompletedTest, TestEvent};
use cli::TestOpts;
use helpers::sink::Sink;
use helpers::concurrency::get_concurrency;
use helpers::exit_code::get_exit_code;
Expand Down

0 comments on commit 557cbd0

Please sign in to comment.