]> git.saurik.com Git - apple/xnu.git/blobdiff - tools/tests/xnu_quick_test/helpers/launch.c
xnu-1699.22.73.tar.gz
[apple/xnu.git] / tools / tests / xnu_quick_test / helpers / launch.c
index 7e8638eff58f297d7866aafbb62ca5c8b3045924..206116042deeba61afda88a81ef3e197640c7303 100644 (file)
@@ -71,43 +71,6 @@ int main(int argc, const char * argv[])
 #endif
 
 
 #endif
 
 
-#if defined(__ppc__)
-       /* 
-        * This is the helper binary for the PPC64 version of xnu_quick_test. xnu_quick_test 
-        * forks and execs this code to test exec()ing from a 32-bit binary.
-        */
-       errmsg = "execve failed: from ppc forking and exec()ing ppc process.\n";
-       argvs[0] = "sleep-ppc32";
-       if (do_execve_test("helpers/sleep-ppc32", argvs, NULL, 0))      goto test_failed_exit;
-
-       errmsg = "execve failed: from ppc forking and exec()ing ppc64 process w/ 4G pagezero.\n";
-       argvs[0] = "sleep-ppc64-4G";
-       if (do_execve_test("helpers/sleep-ppc64-4G", argvs, NULL, 0))   goto test_failed_exit;
-
-       errmsg = "execve failed: from ppc forking and exec()ing ppc64 process w/ 4K pagezero.\n";
-       argvs[0] = "sleep-ppc64-4K";
-       if (do_execve_test("helpers/sleep-ppc64-4K", argvs, NULL, 0))   goto test_failed_exit;
-#endif
-
-
-#if defined(__ppc64__)
-       /* 
-        * This is the helper binary for the ppc version of xnu_quick_test. xnu_quick_test 
-        * forks and execs this code to test exec()ing from a 64-bit binary.
-        */
-       errmsg = "execve failed: from ppc64 forking and exec()ing 64-bit ppc process w/ 4G pagezero.\n";
-       argvs[0] = "sleep-ppc64-4G";
-       if (do_execve_test("helpers/sleep-ppc64-4G", argvs, NULL, 1))           goto test_failed_exit;
-
-       errmsg = "execve failed: from ppc64 forking and exec()ing 64-bit ppc process w/ 4K pagezero.\n";
-       argvs[0] = "sleep-ppc64-4K";
-       if (do_execve_test("helpers/sleep-ppc64-4K", argvs, NULL, 1))           goto test_failed_exit;
-
-       errmsg = "execve failed: from ppc64 forking and exec()ing 32 bit ppc process.\n";
-       argvs[0] = "sleep-ppc32";
-       if (do_execve_test("helpers/sleep-ppc32", argvs, NULL, 1))              goto test_failed_exit;  
-#endif
-
        /* 
         * We are ourselves launched with do_execve_test, which wants a chance to 
         * send a SIGKILL
        /* 
         * We are ourselves launched with do_execve_test, which wants a chance to 
         * send a SIGKILL