]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/dlsym-RTLD_SELF/main.c
dyld-851.27.tar.gz
[apple/dyld.git] / unit-tests / test-cases / dlsym-RTLD_SELF / main.c
index ce7c3a82f8006abced9b8f1552614df5ee167f9c..8c137c6e30365e364700d2a1066c2e0a6629cb51 100644 (file)
@@ -37,7 +37,6 @@
 /// We also check that this works in the main executable.
 ///
 
-#ifdef RTLD_SELF 
 
 int foo()
 {
@@ -63,12 +62,10 @@ static void trySO(const char* pathToLoad)
        (*sym)();       
 }
 
-#endif
 
 
 int main()
 {
-#ifdef RTLD_SELF 
        trySO("test.bundle");
        trySO("test.dylib");
 
@@ -77,8 +74,5 @@ int main()
        }
        
        PASS("dlsym-RTLD_SELF bundle and dylib");
-#else
-       XFAIL("dlsym-RTLD_SELF not implemented");
-#endif
        return EXIT_SUCCESS;
 }