Home | History | Annotate | Download | only in test

Lines Matching refs:DieIfLessThan

187 bool DieIfLessThan(int x, int y) {
189 DieInside("DieIfLessThan");
532 EXPECT_DEATH(DieIfLessThan(2, 3), "DieIfLessThan");
543 EXPECT_DEATH(DieIfLessThan(-1, i), "DieIfLessThan") << "where i == " << i;
552 DieIfLessThan(x, y);
554 "DieIfLessThan");
566 EXPECT_DEATH(DieIf(true), "DieIfLessThan") << "End of death test message.";
604 EXPECT_DEATH(DieIfLessThan(3, 4), regex++);