File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1539,7 +1539,7 @@ tool_rustc_extended!(Rustfmt {
1539
1539
add_bins_to_sysroot: [ "rustfmt" ]
1540
1540
} ) ;
1541
1541
1542
- pub const TEST_FLOAT_PARSE_ALLOW_FEATURES : & ' static str = "f16,cfg_target_has_reliable_f16_f128" ;
1542
+ pub const TEST_FLOAT_PARSE_ALLOW_FEATURES : & str = "f16,cfg_target_has_reliable_f16_f128" ;
1543
1543
1544
1544
impl Builder < ' _ > {
1545
1545
/// Gets a `BootstrapCommand` which is ready to run `tool` in `stage` built for
Original file line number Diff line number Diff line change @@ -1995,6 +1995,10 @@ mod snapshot {
1995
1995
let ctx = TestCtx :: new ( ) ;
1996
1996
insta:: assert_snapshot!(
1997
1997
ctx. config( "test" )
1998
+ // Skip bootstrap tests, as for some reason the recursive nature of running
1999
+ // bootstrap tests under bootstrap tests causes non-deterministic snapshot diffs
2000
+ // on CI.
2001
+ . args( & [ "--skip" , "bootstrap" ] )
1998
2002
. render_steps( ) , @r"
1999
2003
[build] rustc 0 <host> -> Tidy 1 <host>
2000
2004
[test] tidy <>
You can’t perform that action at this time.
0 commit comments