Skip to content

Commit 2071acd

Browse files
committed
Add -v to some feature tests
1 parent 0beb5fe commit 2071acd

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/testsuite/features.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -480,11 +480,14 @@ fn no_feature_doesnt_build() {
480480
.run();
481481
p.process(&p.bin("foo")).with_stdout("").run();
482482

483-
p.cargo("build --features bar")
483+
p.cargo("build --features bar -v")
484484
.with_stderr(
485485
"\
486486
[COMPILING] bar v0.0.1 ([CWD]/bar)
487+
[RUNNING] `rustc --crate-name bar [..]
488+
[DIRTY-MSVC] foo v0.0.1 ([CWD]): the list of features changed
487489
[COMPILING] foo v0.0.1 ([CWD])
490+
[RUNNING] `rustc --crate-name foo [..]
488491
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
489492
",
490493
)
@@ -537,10 +540,12 @@ fn default_feature_pulled_in() {
537540
.run();
538541
p.process(&p.bin("foo")).with_stdout("bar\n").run();
539542

540-
p.cargo("build --no-default-features")
543+
p.cargo("build --no-default-features -v")
541544
.with_stderr(
542545
"\
546+
[DIRTY-MSVC] foo v0.0.1 ([CWD]): the list of features changed
543547
[COMPILING] foo v0.0.1 ([CWD])
548+
[RUNNING] `rustc --crate-name foo [..]
544549
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
545550
",
546551
)

0 commit comments

Comments
 (0)