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