@@ -942,6 +942,7 @@ define_config! {
942
942
jobs: Option <u32 > = "jobs" ,
943
943
compiletest_diff_tool: Option <String > = "compiletest-diff-tool" ,
944
944
ccache: Option <StringOrBool > = "ccache" ,
945
+ exclude: Option <Vec <PathBuf >> = "exclude" ,
945
946
}
946
947
}
947
948
@@ -1372,22 +1373,6 @@ impl Config {
1372
1373
"flags.exclude" = ?flags. exclude
1373
1374
) ;
1374
1375
1375
- config. skip = flags
1376
- . skip
1377
- . into_iter ( )
1378
- . chain ( flags. exclude )
1379
- . map ( |p| {
1380
- // Never return top-level path here as it would break `--skip`
1381
- // logic on rustc's internal test framework which is utilized
1382
- // by compiletest.
1383
- if cfg ! ( windows) {
1384
- PathBuf :: from ( p. to_str ( ) . unwrap ( ) . replace ( '/' , "\\ " ) )
1385
- } else {
1386
- p
1387
- }
1388
- } )
1389
- . collect ( ) ;
1390
-
1391
1376
#[ cfg( feature = "tracing" ) ]
1392
1377
span ! (
1393
1378
target: "CONFIG_HANDLING" ,
@@ -1632,8 +1617,29 @@ impl Config {
1632
1617
jobs,
1633
1618
compiletest_diff_tool,
1634
1619
mut ccache,
1620
+ exclude,
1635
1621
} = toml. build . unwrap_or_default ( ) ;
1636
1622
1623
+ let mut paths: Vec < PathBuf > = flags. skip . into_iter ( ) . chain ( flags. exclude ) . collect ( ) ;
1624
+
1625
+ if let Some ( exclude) = exclude {
1626
+ paths. extend ( exclude) ;
1627
+ }
1628
+
1629
+ config. skip = paths
1630
+ . into_iter ( )
1631
+ . map ( |p| {
1632
+ // Never return top-level path here as it would break `--skip`
1633
+ // logic on rustc's internal test framework which is utilized
1634
+ // by compiletest.
1635
+ if cfg ! ( windows) {
1636
+ PathBuf :: from ( p. to_str ( ) . unwrap ( ) . replace ( '/' , "\\ " ) )
1637
+ } else {
1638
+ p
1639
+ }
1640
+ } )
1641
+ . collect ( ) ;
1642
+
1637
1643
config. jobs = Some ( threads_from_config ( flags. jobs . unwrap_or ( jobs. unwrap_or ( 0 ) ) ) ) ;
1638
1644
1639
1645
if let Some ( file_build) = build {
0 commit comments