File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -480,11 +480,14 @@ fn no_feature_doesnt_build() {
480
480
. run ( ) ;
481
481
p. process ( & p. bin ( "foo" ) ) . with_stdout ( "" ) . run ( ) ;
482
482
483
- p. cargo ( "build --features bar" )
483
+ p. cargo ( "build --features bar -v " )
484
484
. with_stderr (
485
485
"\
486
486
[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
487
489
[COMPILING] foo v0.0.1 ([CWD])
490
+ [RUNNING] `rustc --crate-name foo [..]
488
491
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
489
492
" ,
490
493
)
@@ -537,10 +540,12 @@ fn default_feature_pulled_in() {
537
540
. run ( ) ;
538
541
p. process ( & p. bin ( "foo" ) ) . with_stdout ( "bar\n " ) . run ( ) ;
539
542
540
- p. cargo ( "build --no-default-features" )
543
+ p. cargo ( "build --no-default-features -v " )
541
544
. with_stderr (
542
545
"\
546
+ [DIRTY-MSVC] foo v0.0.1 ([CWD]): the list of features changed
543
547
[COMPILING] foo v0.0.1 ([CWD])
548
+ [RUNNING] `rustc --crate-name foo [..]
544
549
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
545
550
" ,
546
551
)
You can’t perform that action at this time.
0 commit comments