Skip to content

Commit 1279771

Browse files
committed
Revert "compiletest: escape CXX the same way as CC for MSVC"
This reverts commit 490d050.
1 parent dbd10f8 commit 1279771

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/compiletest/src/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2502,7 +2502,7 @@ impl<'test> TestCx<'test> {
25022502
.env("IS_WINDOWS", "1")
25032503
.env("MSVC_LIB", format!("'{}' -nologo", lib.display()))
25042504
.env("CC", format!("'{}' {}", self.config.cc, cflags))
2505-
.env("CXX", format!("'{}'", &self.config.cxx));
2505+
.env("CXX", &self.config.cxx);
25062506
} else {
25072507
cmd.env("CC", format!("{} {}", self.config.cc, self.config.cflags))
25082508
.env("CXX", format!("{} {}", self.config.cxx, self.config.cflags))

0 commit comments

Comments
 (0)