Home | History | Annotate | Download | only in test

Lines Matching refs:DieIf

181 void DieIf(bool should_die) {
183 DieInside("DieIf");
531 EXPECT_DEATH(DieIf(true), "DieIf\\(\\)");
559 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(DieIf(false), "DieIf"),
566 EXPECT_DEATH(DieIf(true), "DieIfLessThan") << "End of death test message.";
574 EXPECT_DEATH(DieIf(false), "DieIf"); // This assertion should fail.
591 ASSERT_DEATH(DieIf(false), "DieIf"); // This assertion should fail.
600 EXPECT_DEATH(DieIf((++x) == 4), "DieIf");
602 const char* regex = "DieIf";