]> git.saurik.com Git - apple/objc4.git/blobdiff - test/weakcopy.m
objc4-680.tar.gz
[apple/objc4.git] / test / weakcopy.m
index 266b455cd503a4c967a77193b7edcfc17c3471c7..1ffdd8f5706a03eed8e94f1e2cc455999af8d3be 100644 (file)
@@ -1,6 +1,17 @@
 // TEST_CONFIG 
 
 #include "test.h"
+
+#if __OBJC_GC__ && __cplusplus && __i386__
+
+int main()
+{
+    testwarn("rdar://19042235 test disabled for 32-bit objc++ GC because of unknown bit rot");
+    succeed(__FILE__);
+}
+
+#else
+
 #include "testroot.i"
 #include <stdint.h>
 #include <string.h>
@@ -69,3 +80,5 @@ int main()
     succeed(__FILE__);
     return 0;
 }
+
+#endif