From 1c98609adac2401a5916563fe3bb344913f82732 Mon Sep 17 00:00:00 2001 From: miloyip Date: Sun, 3 May 2015 21:23:13 +0800 Subject: Standardize MemoryPoolAllocator::Realloc() also, and improve coverage --- test/unittest/allocatorstest.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/unittest/allocatorstest.cpp') diff --git a/test/unittest/allocatorstest.cpp b/test/unittest/allocatorstest.cpp index 3f337242..7b4deeda 100644 --- a/test/unittest/allocatorstest.cpp +++ b/test/unittest/allocatorstest.cpp @@ -42,6 +42,9 @@ void TestAllocator(Allocator& a) { EXPECT_EQ(i, r[i]); Allocator::Free(r); + + // Realloc to zero size + EXPECT_TRUE(a.Realloc(a.Malloc(1), 1, 0) == 0); } TEST(Allocator, CrtAllocator) { -- cgit v1.2.3