Searched refs:fork_and_wait (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/kyua/utils/process/ |
H A D | status_test.cpp | 76 fork_and_wait(void (*hook)(void)) in fork_and_wait() function 152 const status exit_success = fork_and_wait(child_exit< EXIT_SUCCESS >); in ATF_TEST_CASE_BODY() 157 const status exit_failure = fork_and_wait(child_exit< EXIT_FAILURE >); in ATF_TEST_CASE_BODY() 167 const status sigterm = fork_and_wait(child_signal< SIGTERM >); in ATF_TEST_CASE_BODY() 173 const status sigkill = fork_and_wait(child_signal< SIGKILL >); in ATF_TEST_CASE_BODY() 186 const status coredump = fork_and_wait(child_signal< SIGQUIT >); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/atf/atf-c/ |
H A D | utils_test.c | 389 fork_and_wait(const int exitstatus, const char* expout, const char* experr) in fork_and_wait() function 409 fork_and_wait(123, "Some output\n", "Some error\n"); in ATF_TC_BODY() 453 fork_and_wait(120, "Some output\n", "Some error\n"); in ATF_TC_BODY() 468 fork_and_wait(123, "Some output foo\n", "Some error\n"); in ATF_TC_BODY() 483 fork_and_wait(123, "Some output\n", "Some error foo\n"); in ATF_TC_BODY() 498 fork_and_wait(123, "save:my-output.txt", "Some error\n"); in ATF_TC_BODY() 515 fork_and_wait(123, "Some output\n", "save:my-output.txt"); in ATF_TC_BODY()
|
H A D | check.c | 169 fork_and_wait(const char *const *argv, const atf_fs_path_t *outfile, in fork_and_wait() function 271 err = fork_and_wait(argv, NULL, NULL, &status); in check_build_run() 473 err = fork_and_wait(argv, &r->pimpl->m_stdout, &r->pimpl->m_stderr, in atf_check_exec_array()
|
/freebsd/contrib/atf/atf-c++/ |
H A D | utils_test.cpp | 330 fork_and_wait(const int exitstatus, const char* expout, const char* experr) in fork_and_wait() function 349 fork_and_wait(123, "Some output\n", "Some error\n"); in ATF_TEST_CASE_BODY() 393 fork_and_wait(120, "Some output\n", "Some error\n"); in ATF_TEST_CASE_BODY() 408 fork_and_wait(123, "Some output foo\n", "Some error\n"); in ATF_TEST_CASE_BODY() 423 fork_and_wait(123, "Some output\n", "Some error foo\n"); in ATF_TEST_CASE_BODY() 438 fork_and_wait(123, "save:my-output.txt", "Some error\n"); in ATF_TEST_CASE_BODY() 455 fork_and_wait(123, "Some output\n", "save:my-output.txt"); in ATF_TEST_CASE_BODY()
|