@@ -106,19 +106,25 @@ macro_rules! targets {
106
106
( check_cargotest, CheckCargoTest { stage: u32 } ) ,
107
107
( check_tidy, CheckTidy { stage: u32 } ) ,
108
108
( check_rpass, CheckRPass { compiler: Compiler <' a> } ) ,
109
+ ( check_rpass_full, CheckRPassFull { compiler: Compiler <' a> } ) ,
110
+ ( check_rpass_valgrind, CheckRPassValgrind { compiler: Compiler <' a> } ) ,
109
111
( check_rfail, CheckRFail { compiler: Compiler <' a> } ) ,
112
+ ( check_rfail_full, CheckRFailFull { compiler: Compiler <' a> } ) ,
110
113
( check_cfail, CheckCFail { compiler: Compiler <' a> } ) ,
114
+ ( check_cfail_full, CheckCFailFull { compiler: Compiler <' a> } ) ,
111
115
( 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> } ) ,
112
122
( check_codegen, CheckCodegen { compiler: Compiler <' a> } ) ,
113
123
( check_codegen_units, CheckCodegenUnits { compiler: Compiler <' a> } ) ,
114
124
( check_incremental, CheckIncremental { compiler: Compiler <' a> } ) ,
115
125
( check_ui, CheckUi { compiler: Compiler <' a> } ) ,
116
126
( check_debuginfo, CheckDebuginfo { compiler: Compiler <' a> } ) ,
117
127
( 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> } ) ,
122
128
( check_docs, CheckDocs { compiler: Compiler <' a> } ) ,
123
129
( check_error_index, CheckErrorIndex { compiler: Compiler <' a> } ) ,
124
130
( check_rmake, CheckRMake { compiler: Compiler <' a> } ) ,
@@ -378,8 +384,11 @@ impl<'a> Step<'a> {
378
384
Source :: Check { stage, compiler } => {
379
385
vec ! [
380
386
self . check_rpass( compiler) ,
381
- self . check_cfail ( compiler) ,
387
+ self . check_rpass_full ( compiler) ,
382
388
self . check_rfail( compiler) ,
389
+ self . check_rfail_full( compiler) ,
390
+ self . check_cfail( compiler) ,
391
+ self . check_cfail_full( compiler) ,
383
392
self . check_pfail( compiler) ,
384
393
self . check_incremental( compiler) ,
385
394
self . check_ui( compiler) ,
@@ -391,9 +400,12 @@ impl<'a> Step<'a> {
391
400
self . check_debuginfo( compiler) ,
392
401
self . check_rustdoc( compiler) ,
393
402
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) ,
394
408
self . check_rpass_valgrind( compiler) ,
395
- self . check_rpass_full( compiler) ,
396
- self . check_cfail_full( compiler) ,
397
409
self . check_error_index( compiler) ,
398
410
self . check_docs( compiler) ,
399
411
self . check_rmake( compiler) ,
@@ -412,6 +424,8 @@ impl<'a> Step<'a> {
412
424
Source :: CheckTidy { stage } => {
413
425
vec ! [ self . tool_tidy( stage) ]
414
426
}
427
+ Source :: CheckPrettyRPass { compiler } |
428
+ Source :: CheckPrettyRFail { compiler } |
415
429
Source :: CheckRFail { compiler } |
416
430
Source :: CheckPFail { compiler } |
417
431
Source :: CheckCodegen { compiler } |
@@ -438,7 +452,11 @@ impl<'a> Step<'a> {
438
452
]
439
453
}
440
454
Source :: CheckRPassFull { compiler } |
455
+ Source :: CheckRFailFull { compiler } |
441
456
Source :: CheckCFailFull { compiler } |
457
+ Source :: CheckPrettyRPassFull { compiler } |
458
+ Source :: CheckPrettyRFailFull { compiler } |
459
+ Source :: CheckPrettyRPassValgrind { compiler } |
442
460
Source :: CheckRMake { compiler } => {
443
461
vec ! [ self . librustc( compiler) ,
444
462
self . tool_compiletest( compiler. stage) ]
0 commit comments