@@ -50,6 +50,12 @@ use crate::util::logv;
50
50
/// some code here that inspects environment variables or even runs executables
51
51
/// (e.g. when discovering debugger versions).
52
52
pub fn parse_config ( args : Vec < String > ) -> Config {
53
+ if env:: var ( "RUST_TEST_NOCAPTURE" ) . is_ok ( ) {
54
+ eprintln ! (
55
+ "WARNING: RUST_TEST_NOCAPTURE is not supported. Use the `--no-capture` flag instead."
56
+ ) ;
57
+ }
58
+
53
59
let mut opts = Options :: new ( ) ;
54
60
opts. reqopt ( "" , "compile-lib-path" , "path to host shared libraries" , "PATH" )
55
61
. reqopt ( "" , "run-lib-path" , "path to target shared libraries" , "PATH" )
@@ -128,6 +134,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
128
134
"bless" ,
129
135
"overwrite stderr/stdout files instead of complaining about a mismatch" ,
130
136
)
137
+ . optflag ( "" , "fail-fast" , "stop as soon as possible after any test fails" )
131
138
. optflag ( "" , "quiet" , "print one character per test instead of one line" )
132
139
. optopt ( "" , "color" , "coloring: auto, always, never" , "WHEN" )
133
140
. optflag ( "" , "json" , "emit json output instead of plaintext output" )
@@ -319,6 +326,9 @@ pub fn parse_config(args: Vec<String>) -> Config {
319
326
320
327
Config {
321
328
bless : matches. opt_present ( "bless" ) ,
329
+ fail_fast : matches. opt_present ( "fail-fast" )
330
+ || env:: var_os ( "RUSTC_TEST_FAIL_FAST" ) . is_some ( ) ,
331
+
322
332
compile_lib_path : make_absolute ( opt_path ( matches, "compile-lib-path" ) ) ,
323
333
run_lib_path : make_absolute ( opt_path ( matches, "run-lib-path" ) ) ,
324
334
rustc_path : opt_path ( matches, "rustc-path" ) ,
@@ -603,13 +613,6 @@ pub fn run_tests(config: Arc<Config>) {
603
613
}
604
614
605
615
pub fn test_opts ( config : & Config ) -> test:: TestOpts {
606
- if env:: var ( "RUST_TEST_NOCAPTURE" ) . is_ok ( ) {
607
- eprintln ! (
608
- "WARNING: RUST_TEST_NOCAPTURE is no longer used. \
609
- Use the `--nocapture` flag instead."
610
- ) ;
611
- }
612
-
613
616
test:: TestOpts {
614
617
exclude_should_panic : false ,
615
618
filters : config. filters . clone ( ) ,
@@ -629,7 +632,7 @@ pub fn test_opts(config: &Config) -> test::TestOpts {
629
632
options : test:: Options :: new ( ) ,
630
633
time_options : None ,
631
634
force_run_in_process : false ,
632
- fail_fast : std :: env :: var_os ( "RUSTC_TEST_FAIL_FAST" ) . is_some ( ) ,
635
+ fail_fast : config . fail_fast ,
633
636
}
634
637
}
635
638
0 commit comments