File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ impl StepDescription {
232
232
}
233
233
234
234
if !attempted_run {
235
- panic ! ( "Error : no rules matched {}. " , path. display( ) ) ;
235
+ panic ! ( "error : no rules matched {}" , path. display( ) ) ;
236
236
}
237
237
}
238
238
}
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ use pretty_assertions::assert_eq;
6
6
7
7
fn configure ( host : & [ & str ] , target : & [ & str ] ) -> Config {
8
8
let mut config = Config :: default_opts ( ) ;
9
+ config. stage = Some ( 2 ) ;
9
10
// don't save toolstates
10
11
config. save_toolstates = None ;
11
12
config. skip_only_host_steps = false ;
@@ -421,7 +422,7 @@ fn test_exclude() {
421
422
}
422
423
423
424
#[ test]
424
- fn doc_default ( ) {
425
+ fn doc_ci ( ) {
425
426
let mut config = configure ( & [ ] , & [ ] ) ;
426
427
config. compiler_docs = true ;
427
428
config. cmd = Subcommand :: Doc { paths : Vec :: new ( ) , open : false } ;
You can’t perform that action at this time.
0 commit comments