From 4f3cc8189677ceb79293748a159010ac05f481a8 Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Sat, 23 Aug 2008 22:21:00 +0000 Subject: [PATCH] Add carbon.cpp and cocoa.mm tests git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55262 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaCXX/carbon.cpp | 5 +++++ test/SemaObjCXX/cocoa.mm | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 test/SemaCXX/carbon.cpp create mode 100644 test/SemaObjCXX/cocoa.mm diff --git a/test/SemaCXX/carbon.cpp b/test/SemaCXX/carbon.cpp new file mode 100644 index 0000000000..9c9c378040 --- /dev/null +++ b/test/SemaCXX/carbon.cpp @@ -0,0 +1,5 @@ +// RUN: clang %s -fsyntax-only -print-stats +#ifdef __APPLE__ +#include +#endif + diff --git a/test/SemaObjCXX/cocoa.mm b/test/SemaObjCXX/cocoa.mm new file mode 100644 index 0000000000..7cb1b5295c --- /dev/null +++ b/test/SemaObjCXX/cocoa.mm @@ -0,0 +1,5 @@ +// RUN: clang %s -print-stats +#ifdef __APPLE__ +#include +#endif + -- 2.50.1