From e92faa77b4b7e425fc29574c0273b3904ee2b0a6 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Sat, 20 Mar 2021 11:06:44 -0700 Subject: [PATCH] [test] Fix Driver/gcc-toolchain.cpp if CLANG_DEFAULT_CXX_STDLIB is libc++ --- clang/test/Driver/gcc-toolchain.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clang/test/Driver/gcc-toolchain.cpp b/clang/test/Driver/gcc-toolchain.cpp index 03a7991..8bb391f 100644 --- a/clang/test/Driver/gcc-toolchain.cpp +++ b/clang/test/Driver/gcc-toolchain.cpp @@ -1,12 +1,12 @@ // Test that gcc-toolchain option is working correctly // -// RUN: %clangxx -no-canonical-prefixes %s -### -o %t 2>&1 \ -// RUN: --target=x86_64-linux-gnu --gcc-toolchain=%S/Inputs/ubuntu_14.04_multiarch_tree/usr | \ +// RUN: %clangxx -no-canonical-prefixes %s -### -o %t --target=x86_64-linux-gnu \ +// RUN: --gcc-toolchain=%S/Inputs/ubuntu_14.04_multiarch_tree/usr -stdlib=libstdc++ 2>&1 | \ // RUN: FileCheck %s // // Additionally check that the legacy spelling of the flag works. -// RUN: %clangxx -no-canonical-prefixes %s -### -o %t 2>&1 \ -// RUN: --target=x86_64-linux-gnu -gcc-toolchain %S/Inputs/ubuntu_14.04_multiarch_tree/usr | \ +// RUN: %clangxx -no-canonical-prefixes %s -### -o %t --target=x86_64-linux-gnu \ +// RUN: --gcc-toolchain=%S/Inputs/ubuntu_14.04_multiarch_tree/usr -stdlib=libstdc++ 2>&1 | \ // RUN: FileCheck %s // // Test for header search toolchain detection. -- 2.7.4