OSDN Git Service

Remove tests that were either migrated to clang or are obsolete.
authorEric Christopher <echristo@apple.com>
Sat, 20 Aug 2011 00:25:42 +0000 (00:25 +0000)
committerEric Christopher <echristo@apple.com>
Sat, 20 Aug 2011 00:25:42 +0000 (00:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138168 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendObjC++/2007-10-03-MetadataPointers.mm [deleted file]
test/FrontendObjC++/2010-08-02-NonPODObjectValue.mm [deleted file]
test/FrontendObjC++/2010-08-04-Template.mm [deleted file]
test/FrontendObjC++/2010-08-06-X.Y-syntax.mm [deleted file]
test/FrontendObjC++/dg.exp [deleted file]

diff --git a/test/FrontendObjC++/2007-10-03-MetadataPointers.mm b/test/FrontendObjC++/2007-10-03-MetadataPointers.mm
deleted file mode 100644 (file)
index 2ab76c1..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-// RUN: %llvmgcc -w -x objective-c++ -S %s -o /dev/null
-
-@class NSImage;
-void bork() {
-  NSImage *nsimage;
-  [nsimage release];
-}
diff --git a/test/FrontendObjC++/2010-08-02-NonPODObjectValue.mm b/test/FrontendObjC++/2010-08-02-NonPODObjectValue.mm
deleted file mode 100644 (file)
index da47ed0..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-// RUN: not %llvmgcc %s -S -o - |& FileCheck %s
-// This tests for a specific diagnostic in LLVM-GCC.
-// Clang compiles this correctly with no diagnostic,
-// ergo this test will fail with a Clang-based front-end.
-class TFENodeVector  {
-public:
- TFENodeVector(const TFENodeVector& inNodeVector);
- TFENodeVector();
-};
-
-@interface TWindowHistoryEntry  {}
-@property (assign, nonatomic) TFENodeVector targetPath;
-@end
-
-@implementation TWindowHistoryEntry
-@synthesize targetPath;
-- (void) initWithWindowController {
-   TWindowHistoryEntry* entry;
-   TFENodeVector newPath;
-   // CHECK: setting a C++ non-POD object value is not implemented
-#ifdef __clang__
-#error setting a C++ non-POD object value is not implemented
-#endif
-   entry.targetPath = newPath;
-   [entry setTargetPath:newPath];
-}
-@end
diff --git a/test/FrontendObjC++/2010-08-04-Template.mm b/test/FrontendObjC++/2010-08-04-Template.mm
deleted file mode 100644 (file)
index 2ebfd3e..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: %llvmgcc %s -S
-struct TRunSoon {
-  template <class P1> static void Post() {}
-};
-
-@implementation TPrivsTableViewMainController
-- (void) applyToEnclosed {
-  TRunSoon::Post<int>();
-}
-@end
diff --git a/test/FrontendObjC++/2010-08-06-X.Y-syntax.mm b/test/FrontendObjC++/2010-08-06-X.Y-syntax.mm
deleted file mode 100644 (file)
index 986094c..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// RUN: %llvmgcc %s -S
-struct TFENode {
-  TFENode(const TFENode& inNode);
-};
-
-@interface TIconViewController
-- (const TFENode&) target;
-@end
-
-void sortAllChildrenForNode(const TFENode&node);
-
-@implementation TIconViewController
-- (void) setArrangeBy {
-  sortAllChildrenForNode(self.target);
-}
-@end
diff --git a/test/FrontendObjC++/dg.exp b/test/FrontendObjC++/dg.exp
deleted file mode 100644 (file)
index 41c3db2..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-load_lib llvm.exp
-
-if [ llvm_gcc_supports obj-c++ ] then {
-    RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{mm}]]
-}