Home
last modified time | relevance | path

Searched refs:WIFEXITED (Results 1 – 25 of 49) sorted by relevance

12

/xnu-11417.121.6/tests/ !
H A Dicmp_basic.c67 if (ret == 0 || (WIFEXITED(ret) && !WEXITSTATUS(ret))) { in require_internet()
83 if (ret == 0 || (WIFEXITED(ret) && !WEXITSTATUS(ret))) {
99 if (ret == 0 || (WIFEXITED(ret) && !WEXITSTATUS(ret))) {
112 if (ret == 0 || (WIFEXITED(ret) && !WEXITSTATUS(ret))) {
125 if (ret == 0 || (WIFEXITED(ret) && !WEXITSTATUS(ret))) {
H A Dposix_spawn_alt_rosetta.c49 T_QUIET; T_ASSERT_EQ(WIFEXITED(wait_ret), 1, "child process should have called exit()");
61 T_QUIET; T_ASSERT_EQ(WIFEXITED(wait_ret), 1, "child process should have called exit()");
73 T_QUIET; T_ASSERT_EQ(WIFEXITED(wait_ret), 1, "child process should have called exit()");
H A Dperf_spawn_fork.c29 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { \
60 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { \
H A Dsuspended_spawn_26184412.c65 T_ASSERT_EQ(WIFEXITED(status), 0, "before SIGCONT: must not have exited"); in spawn_and_signal()
85 T_ASSERT_EQ(WIFEXITED(status), 1, "child should have exited normally"); in spawn_and_signal()
H A Dposix_spawn_file_actions.c60 T_ASSERT_EQ(WIFEXITED(status), 1, "child should have exited normally");
129 T_ASSERT_EQ(WIFEXITED(status), 1, "child should have exited normally");
H A Dkqworkloop_limits.c88 …T_ASSERT_EQ(WIFEXITED(child_status), 1, "Child exited normally with exit value %d", WEXITSTATUS(ch…
106 T_ASSERT_EQ(WIFEXITED(child_status), 0, "Child did not exit normally");
132 T_ASSERT_EQ(WIFEXITED(child_status), 0, "Child did not exit normally");
H A Dfd_table_limits.c72 …T_ASSERT_EQ(WIFEXITED(child_status), 1, "Child exited normally with exit value %d", WEXITSTATUS(ch…
109 T_ASSERT_EQ(WIFEXITED(child_status), 0, "Child did not exit normally");
150 T_ASSERT_EQ(WIFEXITED(child_status), 0, "Child did not exit normally");
H A Dsubsystem_root_path.h25 if (WIFEXITED(status) && (WEXITSTATUS(status) == 0)) { in _spawn_and_wait()
H A Dport_exhaustion.c46 T_ASSERT_EQ(WIFEXITED(child_status), 0, "Child did not exit normally");
H A Dpipe_read_infloop_55437634.c51 T_ASSERT_TRUE(WIFEXITED(status), NULL);
H A Dposix_spawn_launch_type.c61 T_ASSERT_EQ(WIFEXITED(status), 1, "child should have exited normally");
H A Dexec_set_proc_name.c46 T_ASSERT_TRUE(WIFEXITED(status), "child exited");
H A Dsubsystem_root_path_helper.c38 if (!(WIFEXITED(status) && (WEXITSTATUS(status) == 0))) { in main()
H A Dtask_filter_msg.c64 if (WIFEXITED(status)) {
H A Dposix_spawn_file_actions_add_fileportdup2_np.c66 T_ASSERT_EQ(WIFEXITED(status), 1, "child should have exited normally");
H A Dposix_spawn_posix_cred.c89 T_ASSERT_EQ(WIFEXITED(status), 1, "child should have exited normally");
H A Dposix_spawn_archpref.c35 T_QUIET; T_ASSERT_EQ(WIFEXITED(wait_ret), 1, "%s: child process should have called exit()", name); in run_test()
H A Dxnu_quick_test.c99 T_ASSERT_TRUE((WIFEXITED( my_status ) && WEXITSTATUS( my_status ) == 44),
H A Dposix_spawn_filtering.c101 T_ASSERT_EQ(WIFEXITED(status), 1, "child should have exited normally");
H A Dspawn_exec_failure.c112 T_QUIET; T_EXPECT_FALSE(WIFEXITED(status), "process did not exit normally"); in setup_child_and_wait_for_exit()
/xnu-11417.121.6/tests/vm/ !
H A Dzalloc.c74 if (WIFEXITED(status)) {
82 T_ASSERT_TRUE(WIFEXITED(status) && WEXITSTATUS(status) == 0,
/xnu-11417.121.6/tests/skywalk/ !
H A Dskywalk_mptest_driver.c306 if (WIFEXITED(child_status)) { in skywalk_mptest_driver_run()
317 if (!WIFEXITED(child_status) || WEXITSTATUS(child_status)) { in skywalk_mptest_driver_run()
H A Dskywalk_test_driver.c315 if (WIFEXITED(child_status)) { in skywalk_test_driver_run()
334 if ((WIFEXITED(child_status) && WEXITSTATUS(child_status)) || in skywalk_test_driver_run()
/xnu-11417.121.6/tools/tests/execperf/ !
H A Drun.c84 } else if (WIFEXITED(ret)) { in work()
/xnu-11417.121.6/bsd/sys/ !
H A Dwait.h152 #define WIFEXITED(x) (_WSTATUS(x) == 0) macro

12