From f3a3b0fc0e6be9c45add0aa6624f0cb900548dcc Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 13 Apr 2010 15:01:26 +0000 Subject: [PATCH] Update unittest for allocator laziness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101131 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp b/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp index aa0c41d3ed2..ff5af3b72d4 100644 --- a/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp +++ b/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp @@ -239,8 +239,8 @@ TEST(JITMemoryManagerTest, TestManyGlobals) { size_t Size = 128; int Iters = (SlabSize / Size) + 1; - // We should start with one slab. - EXPECT_EQ(1U, MemMgr->GetNumDataSlabs()); + // We should start with no slabs. + EXPECT_EQ(0U, MemMgr->GetNumDataSlabs()); // After allocating a bunch of globals, we should have two. for (int I = 0; I < Iters; ++I) @@ -262,8 +262,8 @@ TEST(JITMemoryManagerTest, TestManyStubs) { size_t Size = 128; int Iters = (SlabSize / Size) + 1; - // We should start with one slab. - EXPECT_EQ(1U, MemMgr->GetNumStubSlabs()); + // We should start with no slabs. + EXPECT_EQ(0U, MemMgr->GetNumDataSlabs()); // After allocating a bunch of stubs, we should have two. for (int I = 0; I < Iters; ++I) -- 2.34.1