Searched refs:DeathRegex (Results 1 – 1 of 1) sorted by relevance
20 std::string DeathRegex = "Double Free.*DeallocateMemory2.*"; in TEST_P() local21 DeathRegex.append("was deallocated.*DeallocateMemory[^2].*"); in TEST_P()22 DeathRegex.append("was allocated.*AllocateMemory"); in TEST_P()24 ASSERT_DEATH(DeallocateMemory2(GPA, Ptr), DeathRegex); in TEST_P()34 std::basic_regex(DeathRegex, std::regex_constants::extended))) in TEST_P()35 << "Regex \"" << DeathRegex in TEST_P()49 std::string DeathRegex = "Use After Free.*TouchMemory.*"; in TEST_P() local50 DeathRegex.append("was deallocated.*DeallocateMemory[^2].*"); in TEST_P()51 DeathRegex.append("was allocated.*AllocateMemory"); in TEST_P()54 ASSERT_DEATH(TouchMemory(Ptr), DeathRegex); in TEST_P()[all …]