Lines Matching refs:death
152 ## My death test modifies some state, but the change seems lost after the death test finishes. Why?
160 In particular, if you use mocking and the death test statement invokes some mock
279 ## My death test hangs (or seg-faults). How do I fix it?
281 In googletest, death tests are run in a child process and the way they work is
282 delicate. To write death tests you really need to understand how they work—see
283 the details at [Death Assertions](reference/assertions.md#death) in the
286 In particular, death tests don't like having multiple threads in the parent
295 leaving as few things as possible in it. Also, you can try to set the death test
298 If you go with thread-safe death tests, remember that they rerun the test
475 `ASSERT_DEATH(statement, matcher)` (or any death assertion macro) can be used
487 // A death test can be a simple function call.
509 // A death assertion can contain a compound statement.
543 means you cannot safely run a death test.
574 … calling my entire test suite \*DeathTest when it contains both death tests and non-death tests. W…
592 …ints the LOG messages in a death test's child process only when the test fails. How can I see the …
596 googletest only prints them when the death test has failed.
599 break the death test (e.g. by changing the regex pattern it is expected to
601 after the fork-and-exec-style death tests are implemented.