]> git.saurik.com Git - apple/objc4.git/blobdiff - test/methodListSmallMutableMemory.mm
objc4-818.2.tar.gz
[apple/objc4.git] / test / methodListSmallMutableMemory.mm
diff --git a/test/methodListSmallMutableMemory.mm b/test/methodListSmallMutableMemory.mm
deleted file mode 100644 (file)
index 9250fea..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
-TEST_CFLAGS -std=c++11
-TEST_CRASHES
-TEST_RUN_OUTPUT
-objc\[\d+\]: CLASS: class 'Foo' 0x[0-9a-fA-F]+ small method list 0x[0-9a-fA-F]+ is not in immutable memory
-objc\[\d+\]: HALTED
-END
-*/
-
-#define MUTABLE_METHOD_LIST 1
-
-#include "methodListSmall.h"
-
-int main() {
-    Class fooClass = (__bridge Class)&FooClass;
-    [fooClass new];
-    fail("Should have crashed");
-}