Returns true if exit_status describes a process that was terminated by a signal, or exited normally with a nonzero exit code.
| 7826 | // Returns true if exit_status describes a process that was terminated |
| 7827 | // by a signal, or exited normally with a nonzero exit code. |
| 7828 | bool ExitedUnsuccessfully(int exit_status) { |
| 7829 | return !ExitedWithCode(0)(exit_status); |
| 7830 | } |
| 7831 | |
| 7832 | # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA |
| 7833 | // Generates a textual failure message when a death test finds more than |
nothing calls this directly
no outgoing calls
no test coverage detected