r231339 - Fix msvc-link.c test for environments with link.exe on PATH
Hans Wennborg
hans at hanshq.net
Wed Mar 4 18:26:58 PST 2015
Author: hans
Date: Wed Mar 4 20:26:58 2015
New Revision: 231339
URL: http://llvm.org/viewvc/llvm-project?rev=231339&view=rev
Log:
Fix msvc-link.c test for environments with link.exe on PATH
Patch by Michael Edwards!
Modified:
cfe/trunk/test/Driver/msvc-link.c
Modified: cfe/trunk/test/Driver/msvc-link.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/msvc-link.c?rev=231339&r1=231338&r2=231339&view=diff
==============================================================================
--- cfe/trunk/test/Driver/msvc-link.c (original)
+++ cfe/trunk/test/Driver/msvc-link.c Wed Mar 4 20:26:58 2015
@@ -1,11 +1,11 @@
// RUN: %clang -target i686-pc-windows-msvc -### %s 2>&1 | FileCheck --check-prefix=BASIC %s
-// BASIC: "link.exe"
+// BASIC: link.exe"
// BASIC: "-out:a.exe"
// BASIC: "-defaultlib:libcmt"
// BASIC: "-nologo"
// RUN: %clang -target i686-pc-windows-msvc -shared -o a.dll -### %s 2>&1 | FileCheck --check-prefix=DLL %s
-// DLL: "link.exe"
+// DLL: link.exe"
// DLL: "-out:a.dll"
// DLL: "-defaultlib:libcmt"
// DLL: "-nologo"
More information about the cfe-commits
mailing list