@@ -1509,7 +1509,6 @@ fn changing_rustflags_is_cached() {
15091509 . masquerade_as_nightly_cargo ( & [ "checksum-freshness" ] )
15101510 . env ( "RUSTFLAGS" , "-C linker=cc" )
15111511 . with_stderr_data ( str![ [ r#"
1512- [DIRTY] foo v0.0.1 ([ROOT]/foo): the rustflags changed
15131512[COMPILING] foo v0.0.1 ([ROOT]/foo)
15141513[RUNNING] `rustc [..]
15151514[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@@ -1520,9 +1519,7 @@ fn changing_rustflags_is_cached() {
15201519 p. cargo ( "build -Zchecksum-freshness -v" )
15211520 . masquerade_as_nightly_cargo ( & [ "checksum-freshness" ] )
15221521 . with_stderr_data ( str![ [ r#"
1523- [DIRTY] foo v0.0.1 ([ROOT]/foo): the rustflags changed
1524- [COMPILING] foo v0.0.1 ([ROOT]/foo)
1525- [RUNNING] `rustc [..] src/lib.rs [..]
1522+ [FRESH] foo v0.0.1 ([ROOT]/foo)
15261523[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
15271524
15281525"# ] ] )
@@ -1531,9 +1528,7 @@ fn changing_rustflags_is_cached() {
15311528 . masquerade_as_nightly_cargo ( & [ "checksum-freshness" ] )
15321529 . env ( "RUSTFLAGS" , "-C linker=cc" )
15331530 . with_stderr_data ( str![ [ r#"
1534- [DIRTY] foo v0.0.1 ([ROOT]/foo): the rustflags changed
1535- [COMPILING] foo v0.0.1 ([ROOT]/foo)
1536- [RUNNING] `rustc [..]
1531+ [FRESH] foo v0.0.1 ([ROOT]/foo)
15371532[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
15381533
15391534"# ] ] )
@@ -1556,7 +1551,6 @@ fn changing_rustc_extra_flags_is_cached() {
15561551 p. cargo ( "rustc -Zchecksum-freshness -v -- -C linker=cc" )
15571552 . masquerade_as_nightly_cargo ( & [ "checksum-freshness" ] )
15581553 . with_stderr_data ( str![ [ r#"
1559- [DIRTY] foo v0.0.1 ([ROOT]/foo): the profile configuration changed
15601554[COMPILING] foo v0.0.1 ([ROOT]/foo)
15611555[RUNNING] `rustc [..]
15621556[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@@ -1567,19 +1561,15 @@ fn changing_rustc_extra_flags_is_cached() {
15671561 p. cargo ( "rustc -Zchecksum-freshness -v" )
15681562 . masquerade_as_nightly_cargo ( & [ "checksum-freshness" ] )
15691563 . with_stderr_data ( str![ [ r#"
1570- [DIRTY] foo v0.0.1 ([ROOT]/foo): the profile configuration changed
1571- [COMPILING] foo v0.0.1 ([ROOT]/foo)
1572- [RUNNING] `rustc [..] src/lib.rs [..]
1564+ [FRESH] foo v0.0.1 ([ROOT]/foo)
15731565[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
15741566
15751567"# ] ] )
15761568 . run ( ) ;
15771569 p. cargo ( "rustc -Zchecksum-freshness -v -- -C linker=cc" )
15781570 . masquerade_as_nightly_cargo ( & [ "checksum-freshness" ] )
15791571 . with_stderr_data ( str![ [ r#"
1580- [DIRTY] foo v0.0.1 ([ROOT]/foo): the profile configuration changed
1581- [COMPILING] foo v0.0.1 ([ROOT]/foo)
1582- [RUNNING] `rustc [..]
1572+ [FRESH] foo v0.0.1 ([ROOT]/foo)
15831573[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
15841574
15851575"# ] ] )
0 commit comments