diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-05-13 07:44:45 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2018-05-17 10:37:22 -0700 |
| commit | 127977153a7f9f53f34f1dd30f22bc057b4d54b1 (patch) | |
| tree | e8ab09c8942cafaacdd4bf2161f3606aa6ab0e5f | |
| parent | dbd10f81758381339f98994b8d31814cf5e98707 (diff) | |
| download | rust-127977153a7f9f53f34f1dd30f22bc057b4d54b1.tar.gz rust-127977153a7f9f53f34f1dd30f22bc057b4d54b1.zip | |
Revert "compiletest: escape CXX the same way as CC for MSVC"
This reverts commit 490d05055abd36521abc41c2e551ac789820e80f.
| -rw-r--r-- | src/tools/compiletest/src/runtest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 780c8122734..f4671344136 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -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)) |
