]> granicus.if.org Git - clang/commitdiff
tests: Use %clangxx when using driver for C++, in case C++ support is disabled.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 29 Jun 2010 16:52:24 +0000 (16:52 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 29 Jun 2010 16:52:24 +0000 (16:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107153 91177308-0d34-0410-b5e6-96231b3b80d8

13 files changed:
test/CXX/dcl.dcl/basic.namespace/namespace.udecl/p10.cpp
test/CodeGenCXX/constructor-convert.cpp
test/CodeGenCXX/cxx-apple-kext.cpp
test/Driver/cxx-pth.cpp
test/Headers/x86-intrinsics-headers.c
test/Lexer/has_feature_cxx0x.cpp
test/Lexer/has_feature_exceptions.cpp
test/Lexer/has_feature_rtti.cpp
test/Misc/macro-backtrace-limit.c
test/SemaCXX/warn-unreachable.cpp
test/SemaObjCXX/instantiate-message.mm
test/SemaTemplate/example-dynarray.cpp
test/lit.cfg

index 1aa163a8d8d7a90ecfe2ed9af9b2e23666375c0c..27b41a755ed05a6f7f4b491f1a29bfdcb535b3fd 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang -fsyntax-only -verify %s
+// RUN: %clang_cc1 -fsyntax-only -verify %s
 
 namespace test0 {
   namespace ns0 {
index 7de07724bf17fbcedcac09514de17178d1140f32..338febbe97a9a67d9f63523d9356e53b68e2a486 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang -emit-llvm -S -o - %s
+// RUN: %clang_cc1 -emit-llvm -o - %s
 
 // PR5775
 class Twine {
index 4ba69069bedda7e04bd8773561c5c8150d09db58..e9a17277b0bbe710c61e38e2c879b465357ef602 100644 (file)
@@ -1,6 +1,6 @@
-// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 %s -flto -S -o - |\
+// RUN: %clangxx -ccc-host-triple x86_64-apple-darwin10 %s -flto -S -o - |\
 // RUN:   FileCheck --check-prefix=CHECK-NO-KEXT %s
-// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 %s -fapple-kext -flto -S -o - |\
+// RUN: %clangxx -ccc-host-triple x86_64-apple-darwin10 %s -fapple-kext -flto -S -o - |\
 // RUN:   FileCheck --check-prefix=CHECK-KEXT %s
 
 // CHECK-NO-KEXT-NOT: _GLOBAL__D_a
index e349691d423b7c70372faac03e3b5985ad2e285b..97afb5ebe8a870b994d4e0544b02ae18d9b514e9 100644 (file)
@@ -1,12 +1,12 @@
 // Test forced PTH for CXX support.
 
-// RUN: %clang -x c++-header %s -### 2> %t.log
+// RUN: %clangxx -x c++-header %s -### 2> %t.log
 // RUN: FileCheck -check-prefix EMIT -input-file %t.log %s
 
 // EMIT: "{{.*}}/clang{{.*}}" {{.*}} "-emit-pth" "{{.*}}.cpp.gch" "-x" "c++-header" "{{.*}}.cpp"
 
 // RUN: touch %t.h.gch
-// RUN: %clang -E -include %t.h %s -### 2> %t.log
+// RUN: %clangxx -E -include %t.h %s -### 2> %t.log
 // RUN: FileCheck -check-prefix USE -input-file %t.log %s
 
 // USE: "{{.*}}/clang{{.*}}" {{.*}}"-include-pth" "{{.*}}.h.gch" {{.*}}"-x" "c++" "{{.*}}.cpp"
index 24c2d925e00de5536007905a16a4bf1e64e6d734..08abcefed7a76d1d1b0d3c8d64ca29331fa54e5e 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: %clang -fsyntax-only %s
 // RUN: %clang -fsyntax-only -fno-lax-vector-conversions %s
-// RUN: %clang -fsyntax-only -x c++ %s
+// RUN: %clangxx -fsyntax-only -x c++ %s
 
 #if defined(i386) || defined(__x86_64__)
 
index 7ea4c2c1cdcf97ca42ad6ef234efd61447dd17bb..650e577ca72c83f5816d37976337916a6400c322 100644 (file)
@@ -1,5 +1,5 @@
-// RUN: %clang -E -std=c++0x %s -o - | FileCheck --check-prefix=CHECK-0X %s
-// RUN: %clang -E %s -o - | FileCheck --check-prefix=CHECK-NO-0X %s
+// RUN: %clang_cc1 -E -std=c++0x %s -o - | FileCheck --check-prefix=CHECK-0X %s
+// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-0X %s
 
 #if __has_feature(cxx_lambdas)
 int lambdas();
index cfd1efbf84645a2b97bf12887d95b5b51ea3c997..bb5dc0c1336261a8378e5e145eb05805fc5eb7b2 100644 (file)
@@ -1,5 +1,5 @@
-// RUN: %clang -E -fexceptions %s -o - | FileCheck --check-prefix=CHECK-EXCEPTIONS %s
-// RUN: %clang -E -fno-exceptions %s -o - | FileCheck --check-prefix=CHECK-NO-EXCEPTIONS %s
+// RUN: %clang_cc1 -E -fexceptions %s -o - | FileCheck --check-prefix=CHECK-EXCEPTIONS %s
+// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-EXCEPTIONS %s
 
 #if __has_feature(cxx_exceptions)
 int foo();
index 690906c292f236b978269c79ff00b1581af8a8d1..4bfeead329972b0133ca8feea20d1c7e76527417 100644 (file)
@@ -1,5 +1,5 @@
-// RUN: %clang -E -frtti %s -o - | FileCheck --check-prefix=CHECK-RTTI %s
-// RUN: %clang -E -fno-rtti %s -o - | FileCheck --check-prefix=CHECK-NO-RTTI %s
+// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-RTTI %s
+// RUN: %clang_cc1 -E -fno-rtti %s -o - | FileCheck --check-prefix=CHECK-NO-RTTI %s
 
 #if __has_feature(cxx_rtti)
 int foo();
index bc7a4da93a51d35a2c2b3af82e9902711d1d64b6..1e512febefa257c3e8834b47ed899eeb5263cda3 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang-cc1 -fsyntax-only -fmacro-backtrace-limit 5 %s > %t 2>&1 
+// RUN: %clang_cc1 -fsyntax-only -fmacro-backtrace-limit 5 %s > %t 2>&1 
 // RUN: FileCheck %s < %t
 
 #define M1(A, B) ((A) < (B))
index 01b36de5712de2936acf997cfdd43c5a3bd6d635..f5601cd2df08156e0065482d37a89047d8fb4c13 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang %s -fsyntax-only -Xclang -verify -fblocks -Wunreachable-code -Wno-unused-value
+// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks -Wunreachable-code -Wno-unused-value
 
 int &halt() __attribute__((noreturn));
 int &live();
index 46c8ede26a59fcabeb40e15d4ee300f883a5e243..e09b1829e300c6f50c868c6c1d7ee1a55f0a71c9 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang -cc1 -fsyntax-only -verify %s
+// RUN: %clang_cc1 -fsyntax-only -verify %s
 
 // Test template instantiation of Objective-C message sends.
 
index 1f6ede67a5225f5cb9e4c95ffb966066adab83b0..999521e91e5f20b718742ca0693f1aaffc8848d7 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang -emit-llvm -S -o %t %s
+// RUN: %clangxx -emit-llvm -c -o - %s
 #include <stddef.h>
 #include <stdlib.h>
 #include <assert.h>
index b306331703ea2de9ce220f60c3963709668517a4..42de5cbc5f92c0257480e74bfaf426ed25a1b24c 100644 (file)
@@ -128,7 +128,8 @@ config.clang = inferClang(config.environment['PATH'])
 if not lit.quiet:
     lit.note('using clang: %r' % config.clang)
 config.substitutions.append( ('%clang_cc1', config.clang + ' -cc1') )
-config.substitutions.append( ('%clangxx', ' ' + config.clang + ' -ccc-cxx'))
+config.substitutions.append( ('%clangxx', ' ' + config.clang +
+                              ' -ccc-clang-cxx -ccc-cxx '))
 config.substitutions.append( ('%clang', ' ' + config.clang + ' ') )
 
 # FIXME: Find nicer way to prohibit this.
@@ -142,3 +143,6 @@ config.substitutions.append(
 config.substitutions.append(
     (' clang -cc1 ',
      """*** Do not use 'clang -cc1' in tests, use '%clang_cc1'. ***""") )
+config.substitutions.append(
+    (' %clang-cc1 ',
+     """*** invalid substitution, use '%clang_cc1'. ***""") )