@@ -1261,14 +1261,14 @@ fn cargo_default_env_metadata_env_var() {
1261
1261
. with_stderr ( & format ! (
1262
1262
"\
1263
1263
[COMPILING] bar v0.0.1 ([CWD]/bar)
1264
- [RUNNING] `rustc --crate-name bar bar/src/lib.rs --crate-type dylib \
1264
+ [RUNNING] `rustc --crate-name bar bar/src/lib.rs --color never -- crate-type dylib \
1265
1265
--emit=dep-info,link \
1266
1266
-C prefer-dynamic -C debuginfo=2 \
1267
1267
-C metadata=[..] \
1268
1268
--out-dir [..] \
1269
1269
-L dependency=[CWD]/target/debug/deps`
1270
1270
[COMPILING] foo v0.0.1 ([CWD])
1271
- [RUNNING] `rustc --crate-name foo src/lib.rs --crate-type lib \
1271
+ [RUNNING] `rustc --crate-name foo src/lib.rs --color never -- crate-type lib \
1272
1272
--emit=dep-info,link -C debuginfo=2 \
1273
1273
-C metadata=[..] \
1274
1274
-C extra-filename=[..] \
@@ -1288,14 +1288,14 @@ fn cargo_default_env_metadata_env_var() {
1288
1288
. with_stderr ( & format ! (
1289
1289
"\
1290
1290
[COMPILING] bar v0.0.1 ([CWD]/bar)
1291
- [RUNNING] `rustc --crate-name bar bar/src/lib.rs --crate-type dylib \
1291
+ [RUNNING] `rustc --crate-name bar bar/src/lib.rs --color never -- crate-type dylib \
1292
1292
--emit=dep-info,link \
1293
1293
-C prefer-dynamic -C debuginfo=2 \
1294
1294
-C metadata=[..] \
1295
1295
--out-dir [..] \
1296
1296
-L dependency=[CWD]/target/debug/deps`
1297
1297
[COMPILING] foo v0.0.1 ([CWD])
1298
- [RUNNING] `rustc --crate-name foo src/lib.rs --crate-type lib \
1298
+ [RUNNING] `rustc --crate-name foo src/lib.rs --color never -- crate-type lib \
1299
1299
--emit=dep-info,link -C debuginfo=2 \
1300
1300
-C metadata=[..] \
1301
1301
-C extra-filename=[..] \
@@ -1616,7 +1616,7 @@ fn lto_build() {
1616
1616
. with_stderr (
1617
1617
"\
1618
1618
[COMPILING] test v0.0.0 ([CWD])
1619
- [RUNNING] `rustc --crate-name test src/main.rs --crate-type bin \
1619
+ [RUNNING] `rustc --crate-name test src/main.rs --color never -- crate-type bin \
1620
1620
--emit=dep-info,link \
1621
1621
-C opt-level=3 \
1622
1622
-C lto \
@@ -1635,7 +1635,7 @@ fn verbose_build() {
1635
1635
. with_stderr (
1636
1636
"\
1637
1637
[COMPILING] foo v0.0.1 ([CWD])
1638
- [RUNNING] `rustc --crate-name foo src/lib.rs --crate-type lib \
1638
+ [RUNNING] `rustc --crate-name foo src/lib.rs --color never -- crate-type lib \
1639
1639
--emit=dep-info,link -C debuginfo=2 \
1640
1640
-C metadata=[..] \
1641
1641
--out-dir [..] \
@@ -1652,7 +1652,7 @@ fn verbose_release_build() {
1652
1652
. with_stderr (
1653
1653
"\
1654
1654
[COMPILING] foo v0.0.1 ([CWD])
1655
- [RUNNING] `rustc --crate-name foo src/lib.rs --crate-type lib \
1655
+ [RUNNING] `rustc --crate-name foo src/lib.rs --color never -- crate-type lib \
1656
1656
--emit=dep-info,link \
1657
1657
-C opt-level=3 \
1658
1658
-C metadata=[..] \
@@ -1698,7 +1698,7 @@ fn verbose_release_build_deps() {
1698
1698
. with_stderr ( & format ! (
1699
1699
"\
1700
1700
[COMPILING] foo v0.0.0 ([CWD]/foo)
1701
- [RUNNING] `rustc --crate-name foo foo/src/lib.rs \
1701
+ [RUNNING] `rustc --crate-name foo foo/src/lib.rs --color never \
1702
1702
--crate-type dylib --crate-type rlib \
1703
1703
--emit=dep-info,link \
1704
1704
-C prefer-dynamic \
@@ -1707,7 +1707,7 @@ fn verbose_release_build_deps() {
1707
1707
--out-dir [..] \
1708
1708
-L dependency=[CWD]/target/release/deps`
1709
1709
[COMPILING] test v0.0.0 ([CWD])
1710
- [RUNNING] `rustc --crate-name test src/lib.rs --crate-type lib \
1710
+ [RUNNING] `rustc --crate-name test src/lib.rs --color never -- crate-type lib \
1711
1711
--emit=dep-info,link \
1712
1712
-C opt-level=3 \
1713
1713
-C metadata=[..] \
@@ -4099,41 +4099,41 @@ fn build_filter_infer_profile() {
4099
4099
p. cargo ( "build -v" )
4100
4100
. with_stderr_contains (
4101
4101
"\
4102
- [RUNNING] `rustc --crate-name foo src/lib.rs --crate-type lib \
4102
+ [RUNNING] `rustc --crate-name foo src/lib.rs --color never -- crate-type lib \
4103
4103
--emit=dep-info,link[..]",
4104
4104
) . with_stderr_contains (
4105
4105
"\
4106
- [RUNNING] `rustc --crate-name foo src/main.rs --crate-type bin \
4106
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- crate-type bin \
4107
4107
--emit=dep-info,link[..]",
4108
4108
) . run ( ) ;
4109
4109
4110
4110
p. root ( ) . join ( "target" ) . rm_rf ( ) ;
4111
4111
p. cargo ( "build -v --test=t1" )
4112
4112
. with_stderr_contains (
4113
4113
"\
4114
- [RUNNING] `rustc --crate-name foo src/lib.rs --crate-type lib \
4114
+ [RUNNING] `rustc --crate-name foo src/lib.rs --color never -- crate-type lib \
4115
4115
--emit=dep-info,link[..]",
4116
4116
) . with_stderr_contains (
4117
- "[RUNNING] `rustc --crate-name t1 tests/t1.rs --emit=dep-info,link[..]" ,
4117
+ "[RUNNING] `rustc --crate-name t1 tests/t1.rs --color never -- emit=dep-info,link[..]" ,
4118
4118
) . with_stderr_contains (
4119
4119
"\
4120
- [RUNNING] `rustc --crate-name foo src/main.rs --crate-type bin \
4120
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- crate-type bin \
4121
4121
--emit=dep-info,link[..]",
4122
4122
) . run ( ) ;
4123
4123
4124
4124
p. root ( ) . join ( "target" ) . rm_rf ( ) ;
4125
4125
p. cargo ( "build -v --bench=b1" )
4126
4126
. with_stderr_contains (
4127
4127
"\
4128
- [RUNNING] `rustc --crate-name foo src/lib.rs --crate-type lib \
4128
+ [RUNNING] `rustc --crate-name foo src/lib.rs --color never -- crate-type lib \
4129
4129
--emit=dep-info,link[..]",
4130
4130
) . with_stderr_contains (
4131
4131
"\
4132
- [RUNNING] `rustc --crate-name b1 benches/b1.rs --emit=dep-info,link \
4132
+ [RUNNING] `rustc --crate-name b1 benches/b1.rs --color never -- emit=dep-info,link \
4133
4133
-C opt-level=3[..]",
4134
4134
) . with_stderr_contains (
4135
4135
"\
4136
- [RUNNING] `rustc --crate-name foo src/main.rs --crate-type bin \
4136
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- crate-type bin \
4137
4137
--emit=dep-info,link[..]",
4138
4138
) . run ( ) ;
4139
4139
}
@@ -4144,15 +4144,15 @@ fn targets_selected_default() {
4144
4144
p. cargo ( "build -v" )
4145
4145
// bin
4146
4146
. with_stderr_contains ( "\
4147
- [RUNNING] `rustc --crate-name foo src/main.rs --crate-type bin \
4147
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- crate-type bin \
4148
4148
--emit=dep-info,link[..]")
4149
4149
// bench
4150
4150
. with_stderr_does_not_contain ( "\
4151
- [RUNNING] `rustc --crate-name foo src/main.rs --emit=dep-info,link \
4151
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- emit=dep-info,link \
4152
4152
-C opt-level=3 --test [..]")
4153
4153
// unit test
4154
4154
. with_stderr_does_not_contain ( "\
4155
- [RUNNING] `rustc --crate-name foo src/main.rs --emit=dep-info,link \
4155
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- emit=dep-info,link \
4156
4156
-C debuginfo=2 --test [..]") . run ( ) ;
4157
4157
}
4158
4158
@@ -4162,15 +4162,15 @@ fn targets_selected_all() {
4162
4162
p. cargo ( "build -v --all-targets" )
4163
4163
// bin
4164
4164
. with_stderr_contains ( "\
4165
- [RUNNING] `rustc --crate-name foo src/main.rs --crate-type bin \
4165
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- crate-type bin \
4166
4166
--emit=dep-info,link[..]")
4167
4167
// bench
4168
4168
. with_stderr_contains ( "\
4169
- [RUNNING] `rustc --crate-name foo src/main.rs --emit=dep-info,link \
4169
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- emit=dep-info,link \
4170
4170
-C opt-level=3 --test [..]")
4171
4171
// unit test
4172
4172
. with_stderr_contains ( "\
4173
- [RUNNING] `rustc --crate-name foo src/main.rs --emit=dep-info,link \
4173
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- emit=dep-info,link \
4174
4174
-C debuginfo=2 --test [..]") . run ( ) ;
4175
4175
}
4176
4176
@@ -4180,15 +4180,15 @@ fn all_targets_no_lib() {
4180
4180
p. cargo ( "build -v --all-targets" )
4181
4181
// bin
4182
4182
. with_stderr_contains ( "\
4183
- [RUNNING] `rustc --crate-name foo src/main.rs --crate-type bin \
4183
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- crate-type bin \
4184
4184
--emit=dep-info,link[..]")
4185
4185
// bench
4186
4186
. with_stderr_contains ( "\
4187
- [RUNNING] `rustc --crate-name foo src/main.rs --emit=dep-info,link \
4187
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- emit=dep-info,link \
4188
4188
-C opt-level=3 --test [..]")
4189
4189
// unit test
4190
4190
. with_stderr_contains ( "\
4191
- [RUNNING] `rustc --crate-name foo src/main.rs --emit=dep-info,link \
4191
+ [RUNNING] `rustc --crate-name foo src/main.rs --color never -- emit=dep-info,link \
4192
4192
-C debuginfo=2 --test [..]") . run ( ) ;
4193
4193
}
4194
4194
0 commit comments