| /xnu-8796.121.2/tests/ |
| H A D | prioritize_process_launch.c | 346 T_QUIET; T_LOG("The return stat is %d", WEXITSTATUS(stat)); in workloop_cb_test_intransit() 347 T_EXPECT_EQ(WEXITSTATUS(stat), 31, "Temp owner boost did not work correctly with knotes"); in workloop_cb_test_intransit() 380 T_QUIET; T_LOG("The return stat is %d", WEXITSTATUS(stat)); in workloop_cb_test_knote_kill() 381 T_EXPECT_EQ(WEXITSTATUS(stat), 47, "Temp owner boost did not work correctly with knotes"); in workloop_cb_test_knote_kill() 426 T_QUIET; T_LOG("The return stat is %d", WEXITSTATUS(stat)); in workloop_cb_test_sync_bootstrap() 427 T_EXPECT_EQ(WEXITSTATUS(stat), 31, "Temp owner boost did not work correctly with knotes"); in workloop_cb_test_sync_bootstrap() 485 T_QUIET; T_LOG("The return stat is %d", WEXITSTATUS(stat)); 486 T_EXPECT_EQ(WEXITSTATUS(stat), 47, "spawn did not properly boost main thread"); 508 T_QUIET; T_LOG("The return stat is %d", WEXITSTATUS(stat)); 509 T_EXPECT_EQ(WEXITSTATUS(stat), 47, "spawn/exec did not properly boost main thread"); [all …]
|
| H A D | posix_spawn_alt_rosetta.c | 46 T_ASSERT_EQ(WEXITSTATUS(wait_ret), 0, "running natively should return 0"); 58 T_ASSERT_EQ(WEXITSTATUS(wait_ret), 1, "running in rosetta should return 1"); 70 T_ASSERT_EQ(WEXITSTATUS(wait_ret), 2, "running with alternative rosetta runtime should return 2");
|
| H A D | vm_set_max_addr_test.c | 41 code = WEXITSTATUS(status); 53 code = WEXITSTATUS(status);
|
| H A D | perf_spawn_fork.c | 29 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { \ 60 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { \
|
| H A D | posix_spawn_file_actions.c | 61 T_ASSERT_EQ(WEXITSTATUS(status), EX_OK, "child should have exited with success"); 130 T_ASSERT_EQ(WEXITSTATUS(status), EX_OK, "child should have exited with success");
|
| H A D | subsystem_root_path.h | 25 if (WIFEXITED(status) && (WEXITSTATUS(status) == 0)) { in _spawn_and_wait()
|
| H A D | pipe_read_infloop_55437634.c | 52 T_ASSERT_EQ(WEXITSTATUS(status), 0, NULL);
|
| H A D | posix_spawn_launch_type.c | 62 T_ASSERT_EQ(WEXITSTATUS(status), EX_OK, "child should have exited with success");
|
| H A D | shared_cache_tests.c | 37 T_LOG("waitpid for %d returned with status %d", child1, WEXITSTATUS(status));
|
| H A D | subsystem_root_path_helper.c | 38 if (!(WIFEXITED(status) && (WEXITSTATUS(status) == 0))) { in main()
|
| H A D | task_filter_msg.c | 64 const int exit_code = WEXITSTATUS(status);
|
| H A D | posix_spawn_file_actions_add_fileportdup2_np.c | 67 T_ASSERT_EQ(WEXITSTATUS(status), EX_OK, "child should have exited with success");
|
| H A D | suspended_spawn_26184412.c | 86 T_ASSERT_EQ(WEXITSTATUS(status), EX_OK, "child should have exited with success"); in spawn_and_signal()
|
| H A D | posix_spawn_posix_cred.c | 90 T_ASSERT_EQ(WEXITSTATUS(status), EX_OK, "child should have exited with success");
|
| H A D | posix_spawn_archpref.c | 38 …T_ASSERT_EQ(WEXITSTATUS(wait_ret), subtype, "%s: child process should be running with %d subtype",… in run_test()
|
| H A D | xnu_quick_test.c | 99 T_ASSERT_TRUE((WIFEXITED( my_status ) && WEXITSTATUS( my_status ) == 44),
|
| H A D | posix_spawn_filtering.c | 101 T_ASSERT_EQ(WEXITSTATUS(status), EX_OK, "child should have exited with success");
|
| H A D | macho_size_63133398.c | 3219 T_ASSERT_EQ(1, WEXITSTATUS(status), NULL);
|
| H A D | perf_exit.c | 174 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
|
| H A D | task_vm_info_decompressions.c | 70 if (WIFEXITED(status) != 1 || WEXITSTATUS(status) != 0) { in freeze_pid()
|
| H A D | reply_port_defense.c | 178 if (WIFEXITED(child_status) && WEXITSTATUS(child_status)) {
|
| /xnu-8796.121.2/tools/tests/execperf/ |
| H A D | run.c | 85 if (WEXITSTATUS(ret) != 42) { in work() 86 errx(1, "process exited with unexpected exit code %d", WEXITSTATUS(ret)); in work()
|
| /xnu-8796.121.2/tests/vm/ |
| H A D | zalloc.c | 73 pid, WEXITSTATUS(status)); 79 T_ASSERT_TRUE(WIFEXITED(status) && WEXITSTATUS(status) == 0,
|
| H A D | posix_spawnattr_set_jetsam_ttr.c | 216 T_QUIET; T_ASSERT_EQ(WEXITSTATUS(status), 0, "return code was 0"); in posix_spawn_helper_and_wait_for_exit()
|
| /xnu-8796.121.2/bsd/sys/ |
| H A D | wait.h | 144 #define WEXITSTATUS(x) ((_W_INT(x) >> 8) & 0x000000ff) macro 146 #define WEXITSTATUS(x) (_W_INT(x) >> 8) macro
|