@@ -106,19 +106,25 @@ macro_rules! targets {
106106 ( check_cargotest, CheckCargoTest { stage: u32 } ) ,
107107 ( check_tidy, CheckTidy { stage: u32 } ) ,
108108 ( check_rpass, CheckRPass { compiler: Compiler <' a> } ) ,
109+ ( check_rpass_full, CheckRPassFull { compiler: Compiler <' a> } ) ,
110+ ( check_rpass_valgrind, CheckRPassValgrind { compiler: Compiler <' a> } ) ,
109111 ( check_rfail, CheckRFail { compiler: Compiler <' a> } ) ,
112+ ( check_rfail_full, CheckRFailFull { compiler: Compiler <' a> } ) ,
110113 ( check_cfail, CheckCFail { compiler: Compiler <' a> } ) ,
114+ ( check_cfail_full, CheckCFailFull { compiler: Compiler <' a> } ) ,
111115 ( check_pfail, CheckPFail { compiler: Compiler <' a> } ) ,
116+ ( check_pretty, CheckPretty { compiler: Compiler <' a> } ) ,
117+ ( check_pretty_rpass, CheckPrettyRPass { compiler: Compiler <' a> } ) ,
118+ ( check_pretty_rpass_full, CheckPrettyRPassFull { compiler: Compiler <' a> } ) ,
119+ ( check_pretty_rfail, CheckPrettyRFail { compiler: Compiler <' a> } ) ,
120+ ( check_pretty_rfail_full, CheckPrettyRFailFull { compiler: Compiler <' a> } ) ,
121+ ( check_pretty_rpass_valgrind, CheckPrettyRPassValgrind { compiler: Compiler <' a> } ) ,
112122 ( check_codegen, CheckCodegen { compiler: Compiler <' a> } ) ,
113123 ( check_codegen_units, CheckCodegenUnits { compiler: Compiler <' a> } ) ,
114124 ( check_incremental, CheckIncremental { compiler: Compiler <' a> } ) ,
115125 ( check_ui, CheckUi { compiler: Compiler <' a> } ) ,
116126 ( check_debuginfo, CheckDebuginfo { compiler: Compiler <' a> } ) ,
117127 ( check_rustdoc, CheckRustdoc { compiler: Compiler <' a> } ) ,
118- ( check_pretty, CheckPretty { compiler: Compiler <' a> } ) ,
119- ( check_rpass_valgrind, CheckRPassValgrind { compiler: Compiler <' a> } ) ,
120- ( check_rpass_full, CheckRPassFull { compiler: Compiler <' a> } ) ,
121- ( check_cfail_full, CheckCFailFull { compiler: Compiler <' a> } ) ,
122128 ( check_docs, CheckDocs { compiler: Compiler <' a> } ) ,
123129 ( check_error_index, CheckErrorIndex { compiler: Compiler <' a> } ) ,
124130 ( check_rmake, CheckRMake { compiler: Compiler <' a> } ) ,
@@ -378,8 +384,11 @@ impl<'a> Step<'a> {
378384 Source :: Check { stage, compiler } => {
379385 vec ! [
380386 self . check_rpass( compiler) ,
381- self . check_cfail ( compiler) ,
387+ self . check_rpass_full ( compiler) ,
382388 self . check_rfail( compiler) ,
389+ self . check_rfail_full( compiler) ,
390+ self . check_cfail( compiler) ,
391+ self . check_cfail_full( compiler) ,
383392 self . check_pfail( compiler) ,
384393 self . check_incremental( compiler) ,
385394 self . check_ui( compiler) ,
@@ -391,9 +400,12 @@ impl<'a> Step<'a> {
391400 self . check_debuginfo( compiler) ,
392401 self . check_rustdoc( compiler) ,
393402 self . check_pretty( compiler) ,
403+ self . check_pretty_rpass( compiler) ,
404+ self . check_pretty_rpass_full( compiler) ,
405+ self . check_pretty_rfail( compiler) ,
406+ self . check_pretty_rfail_full( compiler) ,
407+ self . check_pretty_rpass_valgrind( compiler) ,
394408 self . check_rpass_valgrind( compiler) ,
395- self . check_rpass_full( compiler) ,
396- self . check_cfail_full( compiler) ,
397409 self . check_error_index( compiler) ,
398410 self . check_docs( compiler) ,
399411 self . check_rmake( compiler) ,
@@ -412,6 +424,8 @@ impl<'a> Step<'a> {
412424 Source :: CheckTidy { stage } => {
413425 vec ! [ self . tool_tidy( stage) ]
414426 }
427+ Source :: CheckPrettyRPass { compiler } |
428+ Source :: CheckPrettyRFail { compiler } |
415429 Source :: CheckRFail { compiler } |
416430 Source :: CheckPFail { compiler } |
417431 Source :: CheckCodegen { compiler } |
@@ -438,7 +452,11 @@ impl<'a> Step<'a> {
438452 ]
439453 }
440454 Source :: CheckRPassFull { compiler } |
455+ Source :: CheckRFailFull { compiler } |
441456 Source :: CheckCFailFull { compiler } |
457+ Source :: CheckPrettyRPassFull { compiler } |
458+ Source :: CheckPrettyRFailFull { compiler } |
459+ Source :: CheckPrettyRPassValgrind { compiler } |
442460 Source :: CheckRMake { compiler } => {
443461 vec ! [ self . librustc( compiler) ,
444462 self . tool_compiletest( compiler. stage) ]
0 commit comments