#include <string>
#include "gwp_asan/common.h"
#include "gwp_asan/crash_handler.h"
#include "gwp_asan/tests/harness.h"
TEST_P(BacktraceGuardedPoolAllocatorDeathTest, NeverAllocated) {
SCOPED_TRACE("");
void *Ptr = GPA.allocate(0x1000);
GPA.deallocate(Ptr);
std::string DeathNeedle =
"GWP-ASan cannot provide any more information about this error";
char *volatile NeverAllocatedPtr = static_cast<char *>(Ptr) + 0x3000;
if (!Recoverable) {
EXPECT_DEATH(*NeverAllocatedPtr = 0, DeathNeedle);
return;
}
*NeverAllocatedPtr = 0;
CheckOnlyOneGwpAsanCrash(GetOutputBuffer());
ASSERT_NE(std::string::npos, GetOutputBuffer().find(DeathNeedle));
GetOutputBuffer().clear();
for (size_t i = 0; i < 100; ++i) {
*NeverAllocatedPtr = 0;
*(NeverAllocatedPtr + 0x2000) = 0;
*(NeverAllocatedPtr + 0x3000) = 0;
ASSERT_TRUE(GetOutputBuffer().empty());
}
GetOutputBuffer().clear();
GPA.deallocate(Ptr);
ASSERT_NE(std::string::npos, GetOutputBuffer().find("Double Free"));
GetOutputBuffer().clear();
for (size_t i = 0; i < 100; ++i) {
DeallocateMemory(GPA, Ptr);
ASSERT_TRUE(GetOutputBuffer().empty());
}
}