Skip to content

Commit

Permalink
Revert "compiletest: escape CXX the same way as CC for MSVC"
Browse files Browse the repository at this point in the history
This reverts commit 490d050.
  • Loading branch information
alexcrichton committed May 17, 2018
1 parent dbd10f8 commit 1279771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/runtest.rs
Expand Up @@ -2502,7 +2502,7 @@ impl<'test> TestCx<'test> {
.env("IS_WINDOWS", "1")
.env("MSVC_LIB", format!("'{}' -nologo", lib.display()))
.env("CC", format!("'{}' {}", self.config.cc, cflags))
.env("CXX", format!("'{}'", &self.config.cxx));
.env("CXX", &self.config.cxx);
} else {
cmd.env("CC", format!("{} {}", self.config.cc, self.config.cflags))
.env("CXX", format!("{} {}", self.config.cxx, self.config.cflags))
Expand Down

0 comments on commit 1279771

Please sign in to comment.