@@ -407,6 +407,7 @@ fn check_all() {
407
407
. run ( ) ;
408
408
}
409
409
410
+ #[ allow( deprecated) ]
410
411
#[ cargo_test]
411
412
fn check_all_exclude ( ) {
412
413
let p = project ( )
@@ -424,8 +425,7 @@ fn check_all_exclude() {
424
425
. build ( ) ;
425
426
426
427
p. cargo ( "check --workspace --exclude baz" )
427
- // does_not_contain
428
- // [CHECKING] baz v0.1.0 [..]
428
+ . with_stderr_does_not_contain ( "[CHECKING] baz v0.1.0 [..]" )
429
429
. with_stderr_data ( str![ [ r#"
430
430
[LOCKING] 2 packages to latest compatible versions
431
431
[CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
@@ -435,6 +435,7 @@ fn check_all_exclude() {
435
435
. run ( ) ;
436
436
}
437
437
438
+ #[ allow( deprecated) ]
438
439
#[ cargo_test]
439
440
fn check_all_exclude_glob ( ) {
440
441
let p = project ( )
@@ -452,8 +453,7 @@ fn check_all_exclude_glob() {
452
453
. build ( ) ;
453
454
454
455
p. cargo ( "check --workspace --exclude '*z'" )
455
- // does_not_contain
456
- // [CHECKING] baz v0.1.0 [..]
456
+ . with_stderr_does_not_contain ( "[CHECKING] baz v0.1.0 [..]" )
457
457
. with_stderr_data ( str![ [ r#"
458
458
[LOCKING] 2 packages to latest compatible versions
459
459
[CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
@@ -495,6 +495,7 @@ fn check_virtual_all_implied() {
495
495
. run ( ) ;
496
496
}
497
497
498
+ #[ allow( deprecated) ]
498
499
#[ cargo_test]
499
500
fn check_virtual_manifest_one_project ( ) {
500
501
let p = project ( )
@@ -512,8 +513,7 @@ fn check_virtual_manifest_one_project() {
512
513
. build ( ) ;
513
514
514
515
p. cargo ( "check -p bar" )
515
- // does_not_contain
516
- // [CHECKING] baz v0.1.0 [..]
516
+ . with_stderr_does_not_contain ( "[CHECKING] baz v0.1.0 [..]" )
517
517
. with_stderr_data ( str![ [ r#"
518
518
[LOCKING] 2 packages to latest compatible versions
519
519
[CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
@@ -523,6 +523,7 @@ fn check_virtual_manifest_one_project() {
523
523
. run ( ) ;
524
524
}
525
525
526
+ #[ allow( deprecated) ]
526
527
#[ cargo_test]
527
528
fn check_virtual_manifest_glob ( ) {
528
529
let p = project ( )
@@ -540,8 +541,7 @@ fn check_virtual_manifest_glob() {
540
541
. build ( ) ;
541
542
542
543
p. cargo ( "check -p '*z'" )
543
- // does_not_contain
544
- // [CHECKING] bar v0.1.0 [..]
544
+ . with_stderr_does_not_contain ( "[CHECKING] bar v0.1.0 [..]" )
545
545
. with_stderr_data ( str![ [ r#"
546
546
[LOCKING] 2 packages to latest compatible versions
547
547
[CHECKING] baz v0.1.0 ([ROOT]/foo/baz)
@@ -565,6 +565,7 @@ fn exclude_warns_on_non_existing_package() {
565
565
. run ( ) ;
566
566
}
567
567
568
+ #[ allow( deprecated) ]
568
569
#[ cargo_test]
569
570
fn targets_selected_default ( ) {
570
571
let foo = project ( )
@@ -576,17 +577,11 @@ fn targets_selected_default() {
576
577
. build ( ) ;
577
578
578
579
foo. cargo ( "check -v" )
579
- // shold not contain
580
- // [..] --crate-name example1 [..] examples/example1.rs [..]
581
- // [..] --crate-name test2 [..] tests/test2.rs [..]
582
- // [..] --crate-name bench3 [..] benches/bench3.rs [..]
583
- . with_stderr_data ( str![ [ r#"
584
- [CHECKING] foo v0.0.1 ([ROOT]/foo)
585
- [RUNNING] `rustc --crate-name foo [..] src/lib.rs [..]`
586
- [RUNNING] `rustc --crate-name foo [..] src/main.rs [..]`
587
- [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
588
-
589
- "# ] ] )
580
+ . with_stderr_contains ( "[..] --crate-name foo [..] src/lib.rs [..]" )
581
+ . with_stderr_contains ( "[..] --crate-name foo [..] src/main.rs [..]" )
582
+ . with_stderr_does_not_contain ( "[..] --crate-name example1 [..] examples/example1.rs [..]" )
583
+ . with_stderr_does_not_contain ( "[..] --crate-name test2 [..] tests/test2.rs [..]" )
584
+ . with_stderr_does_not_contain ( "[..] --crate-name bench3 [..] benches/bench3.rs [..]" )
590
585
. run ( ) ;
591
586
}
592
587
@@ -1011,6 +1006,7 @@ WRAPPER CALLED: rustc --crate-name foo [..]
1011
1006
. run ( ) ;
1012
1007
}
1013
1008
1009
+ #[ allow( deprecated) ]
1014
1010
#[ cargo_test]
1015
1011
fn rustc_workspace_wrapper_respects_primary_units ( ) {
1016
1012
let p = project ( )
@@ -1029,18 +1025,12 @@ fn rustc_workspace_wrapper_respects_primary_units() {
1029
1025
1030
1026
p. cargo ( "check -p bar" )
1031
1027
. env ( "RUSTC_WORKSPACE_WRAPPER" , tools:: echo_wrapper ( ) )
1032
- // should not contain
1033
- // WRAPPER CALLED: rustc --crate-name baz [..]
1034
- . with_stderr_data ( str![ [ r#"
1035
- [LOCKING] 2 packages to latest compatible versions
1036
- [CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
1037
- WRAPPER CALLED: rustc --crate-name bar [..]
1038
- [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
1039
-
1040
- "# ] ] )
1028
+ . with_stderr_contains ( "WRAPPER CALLED: rustc --crate-name bar [..]" )
1029
+ . with_stdout_does_not_contain ( "WRAPPER CALLED: rustc --crate-name baz [..]" )
1041
1030
. run ( ) ;
1042
1031
}
1043
1032
1033
+ #[ allow( deprecated) ]
1044
1034
#[ cargo_test]
1045
1035
fn rustc_workspace_wrapper_excludes_published_deps ( ) {
1046
1036
let p = project ( )
@@ -1069,27 +1059,10 @@ fn rustc_workspace_wrapper_excludes_published_deps() {
1069
1059
1070
1060
p. cargo ( "check --workspace -v" )
1071
1061
. env ( "RUSTC_WORKSPACE_WRAPPER" , tools:: echo_wrapper ( ) )
1072
- // does_not_contain
1073
- // WRAPPER CALLED: rustc --crate-name baz [..]
1074
- . with_stderr_data (
1075
- str![ [ r#"
1076
- [UPDATING] `dummy-registry` index
1077
- [LOCKING] 3 packages to latest compatible versions
1078
- [DOWNLOADING] crates ...
1079
- [DOWNLOADED] baz v1.0.0 (registry `dummy-registry`)
1080
- [CHECKING] baz v1.0.0
1081
- [CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
1082
- [CHECKING] foo v0.1.0 ([ROOT]/foo)
1083
- [RUNNING] `[..]`
1084
- [RUNNING] `[..]`
1085
- [RUNNING] `[..]`
1086
- WRAPPER CALLED: rustc --crate-name bar [..]
1087
- WRAPPER CALLED: rustc --crate-name foo [..]
1088
- [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
1089
-
1090
- "# ] ]
1091
- . unordered ( ) ,
1092
- )
1062
+ . with_stderr_contains ( "WRAPPER CALLED: rustc --crate-name foo [..]" )
1063
+ . with_stderr_contains ( "WRAPPER CALLED: rustc --crate-name bar [..]" )
1064
+ . with_stderr_contains ( "[CHECKING] baz [..]" )
1065
+ . with_stdout_does_not_contain ( "WRAPPER CALLED: rustc --crate-name baz [..]" )
1093
1066
. run ( ) ;
1094
1067
}
1095
1068
0 commit comments