Home
last modified time | relevance | path

Searched refs:RightOOBReadMessage (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cpp70 RightOOBReadMessage(oob_kind, 0)); in StrLenOOBTestTemplate()
156 EXPECT_DEATH(Ident(strdup(str)), RightOOBReadMessage(0)); in TEST()
231 RightOOBReadMessage(0)); in TEST()
245 RightOOBReadMessage(0)); in TEST()
361 EXPECT_DEATH(Ident(StrCmp)(s1, s1), RightOOBReadMessage(0)); in RunStrCmpTest()
436 EXPECT_DEATH(strcat(to, from), RightOOBReadMessage(0)); in TEST()
559 EXPECT_DEATH(Atoi(array + 11), RightOOBReadMessage(1)); in RunAtoiOOBTest()
562 EXPECT_DEATH(Atoi(array), RightOOBReadMessage(0)); in RunAtoiOOBTest()
568 EXPECT_DEATH(Atoi(array), RightOOBReadMessage(0)); in RunAtoiOOBTest()
570 EXPECT_DEATH(Atoi(array), RightOOBReadMessage(0)); in RunAtoiOOBTest()
[all …]
H A Dasan_mem_test.cpp160 RightOOBReadMessage(0)); in MemTransferOOBTestTemplate()
162 RightOOBReadMessage(0)); in MemTransferOOBTestTemplate()
224 EXPECT_DEATH(Ident(cmpfn)(s1 + size, s2, 1), RightOOBReadMessage(0)); in CmpOOBTestCommon()
225 EXPECT_DEATH(Ident(cmpfn)(s1, s2 + size, 1), RightOOBReadMessage(0)); in CmpOOBTestCommon()
227 EXPECT_DEATH(Ident(cmpfn)(s1 + 1, s2 + 1, size), RightOOBReadMessage(0)); in CmpOOBTestCommon()
228 EXPECT_DEATH(Ident(cmpfn)(s1 + size - 1, s2, 2), RightOOBReadMessage(0)); in CmpOOBTestCommon()
232 EXPECT_DEATH(Ident(cmpfn)(s1, s2, size + 1), RightOOBReadMessage(0)); in CmpOOBTestCommon()
238 EXPECT_DEATH(Ident(cmpfn)(s1, s2, size + 1), RightOOBReadMessage(0)); in CmpOOBTestCommon()
H A Dasan_test_utils.h78 std::string RightOOBReadMessage(int oob_distance);
H A Dasan_test.cpp762 std::string RightOOBReadMessage(int oob_distance) { in RightOOBReadMessage() function