Home | History | Annotate | Download | only in gtest

Lines Matching full:exit_status

87 bool ExitedWithCode::operator()(int exit_status) const {
88 return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_;
96 bool KilledBySignal::operator()(int exit_status) const {
97 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
121 // Returns true if exit_status describes a process that was terminated
123 bool ExitedUnsuccessfully(int exit_status) {
124 return !ExitedWithCode(0)(exit_status);
374 // status_ok: true if exit_status is acceptable in the context of