Jonas Hahnfeld | fdaaca8 | 2016-09-29 07:43:08 +0000 | [diff] [blame] | 1 | // This test will fail if CLANG_DEFAULT_CXX_STDLIB is set to anything different |
| 2 | // than the platform default. (see https://llvm.org/bugs/show_bug.cgi?id=30548) |
| 3 | // XFAIL: default-cxx-stdlib-set |
| 4 | |
Tim Northover | b534ce4 | 2016-02-12 22:30:42 +0000 | [diff] [blame] | 5 | // RUN: %clang -target x86_64-apple-darwin -arch arm64 -miphoneos-version-min=7.0 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX |
| 6 | // RUN: %clang -target x86_64-apple-darwin -mmacosx-version-min=10.8 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBSTDCXX |
| 7 | // RUN: %clang -target x86_64-apple-darwin -mmacosx-version-min=10.9 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX |
| 8 | // RUN: %clang -target x86_64-apple-darwin -arch armv7s -miphoneos-version-min=6.1 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBSTDCXX |
| 9 | // RUN: %clang -target x86_64-apple-darwin -arch armv7s -miphoneos-version-min=7.0 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX |
| 10 | // RUN: %clang -target x86_64-apple-darwin -arch armv7k %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX |
| 11 | |
| 12 | // The purpose of this test is that the libc++ headers should be found |
| 13 | // properly. At the moment this is done by passing -stdlib=libc++ down to the |
| 14 | // cc1 invocation. If and when we change to finding them in the driver this test |
| 15 | // should reflect that. |
| 16 | |
| 17 | // CHECK-LIBCXX: -stdlib=libc++ |
| 18 | |
| 19 | // CHECK-LIBSTDCXX-NOT: -stdlib=libc++ |
| 20 | // CHECK-LIBSTDCXX-NOT: -stdlib=libstdc++ |