Remove tests that were either migrated to clang or are obsolete.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138168 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2011-08-20 00:25:42 +00:00
parent ca020c124e
commit 3b763bd3ed
5 changed files with 0 additions and 65 deletions

View File

@ -1,7 +0,0 @@
// RUN: %llvmgcc -w -x objective-c++ -S %s -o /dev/null
@class NSImage;
void bork() {
NSImage *nsimage;
[nsimage release];
}

View File

@ -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

View File

@ -1,10 +0,0 @@
// RUN: %llvmgcc %s -S
struct TRunSoon {
template <class P1> static void Post() {}
};
@implementation TPrivsTableViewMainController
- (void) applyToEnclosed {
TRunSoon::Post<int>();
}
@end

View File

@ -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

View File

@ -1,5 +0,0 @@
load_lib llvm.exp
if [ llvm_gcc_supports obj-c++ ] then {
RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{mm}]]
}