Home | History | Annotate | Download | only in test

Lines Matching refs:GlobalFunction

159 void GlobalFunction() {
160 GTEST_LOG_(FATAL) << "death inside GlobalFunction().";
186 EXPECT_DEATH(GlobalFunction(), "death.*GlobalFunction");
187 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction");
434 TEST_F(TestForDeathTest, GlobalFunction) {
435 EXPECT_DEATH(GlobalFunction(), "GlobalFunction");
441 static const char regex_c_str[] = "GlobalFunction";
442 EXPECT_DEATH(GlobalFunction(), regex_c_str);
445 EXPECT_DEATH(GlobalFunction(), regex);
449 EXPECT_DEATH(GlobalFunction(), regex_str);
454 EXPECT_DEATH(GlobalFunction(), regex_std_str);