Searched refs:WEXITSTATUS (Results 1 – 6 of 6) sorted by relevance
39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) macro42 #define WSTOPSIG(s) WEXITSTATUS(s)
119 ASSERT_EQ(expected_exit_status, WEXITSTATUS(status)); in AssertChildExited()
280 ASSERT_EQ(0, WEXITSTATUS(status)); in TEST()284 ASSERT_EQ(1, WEXITSTATUS(status)); in TEST()
42 ASSERT_EQ(123, WEXITSTATUS(status)); in TEST()
287 return (result != -1 && WEXITSTATUS(result) == 0); in EnumerateTests()781 if (result != pid || WEXITSTATUS(exit_status) != 0) { in WaitForOneChild()813 int exitcode = WEXITSTATUS(child_proc.exit_status); in CollectChildTestResult()
124 #ifndef WEXITSTATUS125 #define WEXITSTATUS(status) (((status) >> 8) & 0xff) macro