Home
last modified time | relevance | path

Searched refs:status (Results 1 – 9 of 9) sorted by relevance

/malloc/
A Dtst-mtrace.sh27 status=0
35 ${common_objpfx}malloc/tst-mtrace || status=1
37 if test $status -eq 0 && test -f ${common_objpfx}malloc/mtrace; then
39 > ${common_objpfx}malloc/tst-mtrace.out|| status=1
44 exit $status
A Dtst-mallocfork3.c74 int status; in sigusr1_handler() local
75 int ret = TEMP_FAILURE_RETRY (waitpid (pid, &status, 0)); in sigusr1_handler()
82 if (status != 0) in sigusr1_handler()
178 int status; in do_test() local
179 int ret = TEMP_FAILURE_RETRY (waitpid (pid, &status, 0)); in do_test()
182 TEST_COMPARE (status, 0); in do_test()
A Dtst-mallocfork2.c83 int status; in sigusr1_handler() local
84 int ret = TEMP_FAILURE_RETRY (waitpid (pid, &status, 0)); in sigusr1_handler()
91 if (status != 0) in sigusr1_handler()
219 int status; in do_test() local
220 int ret = TEMP_FAILURE_RETRY (waitpid (pid, &status, 0)); in do_test()
223 TEST_COMPARE (status, 0); in do_test()
A Dmcheck-impl.c69 enum mcheck_status status; in checkhdr() local
80 status = MCHECK_HEAD; in checkhdr()
83 status = MCHECK_FREE; in checkhdr()
87 status = MCHECK_TAIL; in checkhdr()
89 status = MCHECK_HEAD; in checkhdr()
91 status = MCHECK_OK; in checkhdr()
94 if (status != MCHECK_OK) in checkhdr()
97 (*abortfunc) (status); in checkhdr()
100 return status; in checkhdr()
348 mabort (enum mcheck_status status) in mabort() argument
[all …]
A Dtst-malloc-fork-deadlock.c59 int status; in fork_thread_function() local
60 if (waitpid (pid, &status, 0) < 0) in fork_thread_function()
65 if (!WIFEXITED (status) || WEXITSTATUS (status) != 17) in fork_thread_function()
67 printf ("error: waitpid returned invalid status: %d\n", status); in fork_thread_function()
A Dtst-interpose-skeleton.c148 int status; in run_tests() local
149 int ret = waitpid (pid, &status, 0); in run_tests()
155 if (!WIFEXITED (status) || WEXITSTATUS (status) != exit_code) in run_tests()
158 status); in run_tests()
A Dtst-dynarray-at-fail.c44 TEST_VERIFY (WIFSIGNALED (result.status)); in check()
45 if (WIFSIGNALED (result.status)) in check()
46 TEST_VERIFY (WTERMSIG (result.status) == SIGABRT); in check()
A Dtst-safe-linking.c59 TEST_VERIFY (WIFSIGNALED (result.status)); in check()
60 if (WIFSIGNALED (result.status)) in check()
61 TEST_VERIFY (WTERMSIG (result.status) == SIGABRT); in check()
A Dtst-malloc-thread-fail.c280 int status; in run_one() local
281 if (waitpid (pid, &status, 0) < 0) in run_one()
286 if (status != 0) in run_one()
288 printf ("error: exit status %d from child process\n", status); in run_one()

Completed in 18 milliseconds