Home | History | Annotate | Download | only in test

Lines Matching refs:DieIfLessThan

177 bool DieIfLessThan(int x, int y) {
179 DieInside("DieIfLessThan");
464 EXPECT_DEATH(DieIfLessThan(2, 3), "DieIfLessThan");
475 EXPECT_DEATH(DieIfLessThan(-1, i), "DieIfLessThan") << "where i == " << i;
484 DieIfLessThan(x, y);
486 "DieIfLessThan");
498 EXPECT_DEATH(DieIf(true), "DieIfLessThan") << "End of death test message.";
536 EXPECT_DEATH(DieIfLessThan(3, 4), regex++);