Home
last modified time | relevance | path

Searched refs:test_pid (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.81.4/tests/sched/
H A Dzero_to_n_tests.c55 pid_t test_pid; in run_zn() local
56 test_pid = dt_launch_tool_pipe(cmd, false, &pipes, NULL, NULL, NULL, NULL); in run_zn()
57 …T_QUIET; T_ASSERT_NE(test_pid, 0, "dt_launch_tool_pipe() failed unexpectedly with errno %d", errno… in run_zn()
93 if (!dt_waitpid(test_pid, &exitstatus, NULL, 0) || exitstatus != 0) { in run_zn()
/xnu-12377.81.4/tests/vm/
H A Dvm_allocation.c225 pid_t test_pid = fork(); in child_test_passed() local
226 T_QUIET; T_ASSERT_POSIX_SUCCESS(test_pid, "fork()"); in child_test_passed()
227 if (!test_pid) { in child_test_passed()
231 while (waitpid(test_pid, &test_status, 0) != test_pid) { in child_test_passed()