From: Marcos Pividori Date: Thu, 9 Feb 2017 18:40:52 +0000 (+0000) Subject: [windows] Fix test for cl driver. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=542041838281a49128517d5600a9aebac15740a1;p=clang [windows] Fix test for cl driver. cl-link.c test was failing after r294604 because of the change in the order of parameters. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@294609 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/cl-link.c b/test/Driver/cl-link.c index 0d3e46d0ea..4cc170c1cb 100644 --- a/test/Driver/cl-link.c +++ b/test/Driver/cl-link.c @@ -14,8 +14,9 @@ // ASAN: "-debug" // ASAN: "-incremental:no" // ASAN: "{{[^"]*}}clang_rt.asan-i386.lib" -// ASAN: "{{.*}}clang_rt.asan_cxx-i386.lib" // ASAN: "-wholearchive:{{.*}}clang_rt.asan-i386.lib" +// ASAN: "{{[^"]*}}clang_rt.asan_cxx-i386.lib" +// ASAN: "-wholearchive:{{.*}}clang_rt.asan_cxx-i386.lib" // ASAN: "{{.*}}cl-link{{.*}}.obj" // RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /MD /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-MD %s