Home | History | Annotate | Download | only in gtest

Lines Matching refs:death

34 // This header file defines the public API for death tests.  It is
41 #include <gtest/internal/gtest-death-test-internal.h>
45 // This flag controls the style of death tests. Valid values are "threadsafe",
46 // meaning that the death test child process will re-execute the test binary
47 // from the start, running only a single death test, or "fast",
54 // The following macros are useful for writing death tests.
63 // 2. The parent process forks a sub-process and runs the death test
64 // in it; the sub-process exits with code 0 at the end of the death
77 // death tests only when there is a single thread. Since exit() has a
143 // The death testing framework causes this to have interesting semantics,
154 // LOG(DFATAL) << "death";
161 // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
183 // }, "death");