]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/bundle-multi-load/main.c
dyld-353.2.1.tar.gz
[apple/dyld.git] / unit-tests / test-cases / bundle-multi-load / main.c
index 5d4d052156f8ba8c3bcf3b7fb9c9e2df45423646..ab0382a40045d7b65c8266be1997510a42feb7aa 100644 (file)
@@ -22,6 +22,7 @@
  */
 #include <stdio.h>
 #include <mach-o/dyld.h>
+#include <Availability.h>
 
 #include "test.h" // PASS(), FAIL()
 
@@ -32,6 +33,8 @@
 
 int main()
 {
+// NSCreateObjectFileImageFromMemory is only available on Mac OS X - not iPhone OS
+#if __MAC_OS_X_VERSION_MIN_REQUIRED
        NSObjectFileImage ofi;
        if ( NSCreateObjectFileImageFromFile("test.bundle", &ofi) != NSObjectFileImageSuccess ) {
                FAIL("NSCreateObjectFileImageFromFile failed");
@@ -51,7 +54,7 @@ int main()
        }
 
        void* func = NSAddressOfSymbol(sym);
-       fprintf(stderr, "1st address of foo() = %p in module %p in OFI %p\n", func, mod, ofi);
+       //fprintf(stderr, "1st address of foo() = %p in module %p in OFI %p\n", func, mod, ofi);
 
 
        NSObjectFileImage ofi2;
@@ -77,7 +80,7 @@ int main()
        }
 
        void* func2 = NSAddressOfSymbol(sym2);
-       fprintf(stderr, "2nd address of foo() = %p in module %p in OFI %p\n", func2, mod2, ofi2);
+       //fprintf(stderr, "2nd address of foo() = %p in module %p in OFI %p\n", func2, mod2, ofi2);
        if ( func == func2 ) {
                FAIL("2nd NSAddressOfSymbol return same function address as 1st\n");
                return 0;
@@ -109,7 +112,7 @@ int main()
                return 0;
        }
        void* func3 = NSAddressOfSymbol(sym3);
-       fprintf(stderr, "3rd address of foo() = %p in module %p in OFI %p\n", func3, mod3, ofi3);
+       //fprintf(stderr, "3rd address of foo() = %p in module %p in OFI %p\n", func3, mod3, ofi3);
        if ( func3 == func ) {
                FAIL("3rd NSAddressOfSymbol return same function address as 1st\n");
                return 0;
@@ -147,7 +150,7 @@ int main()
                FAIL("3rd NSDestroyObjectFileImage failed");
                return 0;
        }
-       
+#endif 
        PASS("bundle-multi-load");
        return 0;
 }