Skip to content

Commit 5f0294b

Browse files
committed
Auto merge of #14051 - henry40408:issue-14039-shell-quoting, r=weihanglo
test: migrate features_are_quoted to snapbox ### What does this PR try to resolve? Part of #14039. Migrate `tests/testsuite/shell_quoting.rs` to snapbox. ### How should we test and review this PR? N/A ### Additional information N/A
2 parents 00ea165 + 3a19de7 commit 5f0294b

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

tests/testsuite/shell_quoting.rs

+13-11
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
//! in the output, their arguments are quoted properly
33
//! so that the command can be run in a terminal.
44
5-
#![allow(deprecated)]
6-
75
use cargo_test_support::project;
6+
use cargo_test_support::str;
87

98
#[cargo_test]
109
fn features_are_quoted() {
@@ -26,14 +25,17 @@ fn features_are_quoted() {
2625
.build();
2726

2827
p.cargo("check -v")
29-
.env("MSYSTEM", "1")
30-
.with_status(101)
31-
.with_stderr_contains(
32-
r#"[RUNNING] `rustc [..] --cfg 'feature="default"' --cfg 'feature="some_feature"' [..]`"#
33-
).with_stderr_contains(
34-
r#"
28+
.env("MSYSTEM", "1")
29+
.with_status(101)
30+
.with_stderr_data(str![[r#"
31+
[CHECKING] foo v0.1.0 ([ROOT]/foo)
32+
[RUNNING] `rustc [..] --cfg 'feature="default"' --cfg 'feature="some_feature"' [..]`
33+
...
34+
[ERROR] could not compile `foo` (bin "foo") due to 1 previous error
35+
3536
Caused by:
36-
process didn't exit successfully: [..] --cfg 'feature="default"' --cfg 'feature="some_feature"' [..]"#
37-
)
38-
.run();
37+
process didn't exit successfully: [..] --cfg 'feature="default"' --cfg 'feature="some_feature"' [..]
38+
39+
"#]])
40+
.run();
3941
}

0 commit comments

Comments
 (0)