]> granicus.if.org Git - clang/commitdiff
Fix msvc-link.c test for environments with link.exe on PATH
authorHans Wennborg <hans@hanshq.net>
Thu, 5 Mar 2015 02:26:58 +0000 (02:26 +0000)
committerHans Wennborg <hans@hanshq.net>
Thu, 5 Mar 2015 02:26:58 +0000 (02:26 +0000)
Patch by Michael Edwards!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@231339 91177308-0d34-0410-b5e6-96231b3b80d8

test/Driver/msvc-link.c

index a93ecaf9b6380768573a016701243c2e7a7efcfc..b44e3826199ca21eb74f5223a41369157560f2d0 100644 (file)
@@ -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"