Searched refs:GlobalFunction (Results 1 – 2 of 2) sorted by relevance
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-death-test_test.cc | 172 void GlobalFunction() { DieInside("GlobalFunction"); } in GlobalFunction() function 196 EXPECT_DEATH(GlobalFunction(), "death.*GlobalFunction"); in DeathTestSubroutine() 197 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction"); in DeathTestSubroutine() 500 TEST_F(TestForDeathTest, GlobalFunction) { in TEST_F() argument 501 EXPECT_DEATH(GlobalFunction(), "GlobalFunction"); in TEST_F() 508 EXPECT_DEATH(GlobalFunction(), regex_c_str); in TEST_F() 511 EXPECT_DEATH(GlobalFunction(), regex); in TEST_F() 516 EXPECT_DEATH(GlobalFunction(), regex_str); in TEST_F() 521 EXPECT_DEATH(GlobalFunction(), regex_std_str); in TEST_F()
|
/external/googletest/googletest/test/ |
D | googletest-death-test-test.cc | 166 void GlobalFunction() { DieInside("GlobalFunction"); } in GlobalFunction() function 190 EXPECT_DEATH(GlobalFunction(), "death.*GlobalFunction"); in DeathTestSubroutine() 191 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction"); in DeathTestSubroutine() 505 TEST_F(TestForDeathTest, GlobalFunction) { in TEST_F() argument 506 EXPECT_DEATH(GlobalFunction(), "GlobalFunction"); in TEST_F() 513 EXPECT_DEATH(GlobalFunction(), regex_c_str); in TEST_F() 516 EXPECT_DEATH(GlobalFunction(), regex); in TEST_F() 521 EXPECT_DEATH(GlobalFunction(), regex_std_str); in TEST_F() 525 EXPECT_DEATH(GlobalFunction(), ::std::string(regex_c_str).c_str()); in TEST_F()
|