Searched refs:expected_exit_status (Results 1 – 1 of 1) sorted by relevance
176 static inline void AssertChildExited(int pid, int expected_exit_status,184 if (expected_exit_status >= 0) {186 ASSERT_EQ(expected_exit_status, WEXITSTATUS(status)) << *error_msg;189 ASSERT_EQ(-expected_exit_status, WTERMSIG(status)) << *error_msg;231 void Run(const std::function<void()>& child_fn, int expected_exit_status, in Run() argument260 AssertChildExited(pid, expected_exit_status, &error_msg); in Run()