Skip to content

Commit

Permalink
Fix new_warning_with_corrupt_ws missing "USER".
Browse files Browse the repository at this point in the history
Also removed USER in all invocations to avoid this in the future.
  • Loading branch information
ehuss committed Apr 16, 2019
1 parent 73ed6a5 commit 03932d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/testsuite/support/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1679,6 +1679,7 @@ fn _process(t: &OsStr) -> cargo::util::ProcessBuilder {
.env_remove("XDG_CONFIG_HOME") // see #2345
.env("GIT_CONFIG_NOSYSTEM", "1") // keep trying to sandbox ourselves
.env_remove("EMAIL")
.env_remove("USER") // not set on some rust-lang docker images
.env_remove("MFLAGS")
.env_remove("MAKEFLAGS")
.env_remove("CARGO_MAKEFLAGS")
Expand Down
1 change: 1 addition & 0 deletions tests/testsuite/workspaces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,7 @@ root: [..]
fn new_warning_with_corrupt_ws() {
let p = project().file("Cargo.toml", "asdf").build();
p.cargo("new bar")
.env("USER", "foo")
.with_stderr(
"\
[WARNING] compiling this new crate may not work due to invalid workspace configuration
Expand Down

0 comments on commit 03932d6

Please sign in to comment.