Skip to content

Commit 2cf53bc

Browse files
committed
Correctly filter out rustc env vars
1 parent d8afff4 commit 2cf53bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ fn main() -> Result<()> {
5151
"The system cannot find the file specified.",
5252
"No such file or directory",
5353
);
54-
config.filter(r#"RUSTC_BOOTSTRAP=\"1\" "#, "");
55-
config.filter(r#"RUSTC_ICE=\"0\" "#, "");
54+
config.filter(r#"RUSTC_BOOTSTRAP=\\"1\\" "#, "");
55+
config.filter(r#"RUSTC_ICE=\\"0\\" "#, "");
5656
config.filter("RUSTC_BOOTSTRAP=\"1\" ", "");
5757
config.filter("RUSTC_ICE=\"0\" ", "");
5858
// The order of the `/deps` directory flag is flaky

0 commit comments

Comments
 (0)