From: Hans Wennborg Date: Thu, 5 Mar 2015 02:26:58 +0000 (+0000) Subject: Fix msvc-link.c test for environments with link.exe on PATH X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0cf0644a7f68dde61e43057c450ad13fb2cc35d2;p=clang Fix msvc-link.c test for environments with link.exe on PATH Patch by Michael Edwards! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@231339 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/msvc-link.c b/test/Driver/msvc-link.c index a93ecaf9b6..b44e382619 100644 --- a/test/Driver/msvc-link.c +++ b/test/Driver/msvc-link.c @@ -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"