From: Douglas Yung Date: Thu, 30 Aug 2018 19:52:57 +0000 (+0000) Subject: Change %clang++ to %clangxx in test run line as it was expanding to clang.exe++ on... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e2855204fd525303b19dacaad4cb79454f050f0;p=clang Change %clang++ to %clangxx in test run line as it was expanding to clang.exe++ on Windows. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@341106 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/linux-ld.c b/test/Driver/linux-ld.c index 9a0c3f2edd..8194b97d3b 100644 --- a/test/Driver/linux-ld.c +++ b/test/Driver/linux-ld.c @@ -158,7 +158,7 @@ // CHECK-CLANG-NO-LIBGCC: "-lc" // CHECK-CLANG-NO-LIBGCC: "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" // -// RUN: %clang++ -no-canonical-prefixes %s -### -o %t.o 2>&1 \ +// RUN: %clangxx -no-canonical-prefixes %s -### -o %t.o 2>&1 \ // RUN: --target=x86_64-unknown-linux -rtlib=platform \ // RUN: --gcc-toolchain="" \ // RUN: --sysroot=%S/Inputs/basic_linux_tree \