Skip to content

Commit 6818561

Browse files
committed
fix(test): Restore does_not_contain for check
This is partial revert of #14185 (2706247) Although the changes made in that commit are valid, for the same reason mentioned in the comment #14181 (comment), "People are unlikely to see these comments when updating snapshots". Therefore, it would be better to revert these parts.
1 parent be1db6c commit 6818561

File tree

1 file changed

+22
-49
lines changed

1 file changed

+22
-49
lines changed

tests/testsuite/check.rs

+22-49
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ fn check_all() {
407407
.run();
408408
}
409409

410+
#[allow(deprecated)]
410411
#[cargo_test]
411412
fn check_all_exclude() {
412413
let p = project()
@@ -424,8 +425,7 @@ fn check_all_exclude() {
424425
.build();
425426

426427
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 [..]")
429429
.with_stderr_data(str![[r#"
430430
[LOCKING] 2 packages to latest compatible versions
431431
[CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
@@ -435,6 +435,7 @@ fn check_all_exclude() {
435435
.run();
436436
}
437437

438+
#[allow(deprecated)]
438439
#[cargo_test]
439440
fn check_all_exclude_glob() {
440441
let p = project()
@@ -452,8 +453,7 @@ fn check_all_exclude_glob() {
452453
.build();
453454

454455
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 [..]")
457457
.with_stderr_data(str![[r#"
458458
[LOCKING] 2 packages to latest compatible versions
459459
[CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
@@ -495,6 +495,7 @@ fn check_virtual_all_implied() {
495495
.run();
496496
}
497497

498+
#[allow(deprecated)]
498499
#[cargo_test]
499500
fn check_virtual_manifest_one_project() {
500501
let p = project()
@@ -512,8 +513,7 @@ fn check_virtual_manifest_one_project() {
512513
.build();
513514

514515
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 [..]")
517517
.with_stderr_data(str![[r#"
518518
[LOCKING] 2 packages to latest compatible versions
519519
[CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
@@ -523,6 +523,7 @@ fn check_virtual_manifest_one_project() {
523523
.run();
524524
}
525525

526+
#[allow(deprecated)]
526527
#[cargo_test]
527528
fn check_virtual_manifest_glob() {
528529
let p = project()
@@ -540,8 +541,7 @@ fn check_virtual_manifest_glob() {
540541
.build();
541542

542543
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 [..]")
545545
.with_stderr_data(str![[r#"
546546
[LOCKING] 2 packages to latest compatible versions
547547
[CHECKING] baz v0.1.0 ([ROOT]/foo/baz)
@@ -565,6 +565,7 @@ fn exclude_warns_on_non_existing_package() {
565565
.run();
566566
}
567567

568+
#[allow(deprecated)]
568569
#[cargo_test]
569570
fn targets_selected_default() {
570571
let foo = project()
@@ -576,17 +577,11 @@ fn targets_selected_default() {
576577
.build();
577578

578579
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 [..]")
590585
.run();
591586
}
592587

@@ -1011,6 +1006,7 @@ WRAPPER CALLED: rustc --crate-name foo [..]
10111006
.run();
10121007
}
10131008

1009+
#[allow(deprecated)]
10141010
#[cargo_test]
10151011
fn rustc_workspace_wrapper_respects_primary_units() {
10161012
let p = project()
@@ -1029,18 +1025,12 @@ fn rustc_workspace_wrapper_respects_primary_units() {
10291025

10301026
p.cargo("check -p bar")
10311027
.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 [..]")
10411030
.run();
10421031
}
10431032

1033+
#[allow(deprecated)]
10441034
#[cargo_test]
10451035
fn rustc_workspace_wrapper_excludes_published_deps() {
10461036
let p = project()
@@ -1069,27 +1059,10 @@ fn rustc_workspace_wrapper_excludes_published_deps() {
10691059

10701060
p.cargo("check --workspace -v")
10711061
.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 [..]")
10931066
.run();
10941067
}
10951068

0 commit comments

Comments
 (0)