MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / ExitedUnsuccessfully

Function ExitedUnsuccessfully

tests/gtest/gtest-all.cc:7828–7830  ·  view source on GitHub ↗

Returns true if exit_status describes a process that was terminated by a signal, or exited normally with a nonzero exit code.

Source from the content-addressed store, hash-verified

7826// Returns true if exit_status describes a process that was terminated
7827// by a signal, or exited normally with a nonzero exit code.
7828bool 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected