From 6cf9d5cfbfe8120121d8d53cbbf8915cea8f4879 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Mon, 22 May 2017 13:33:18 -0700 Subject: [test] Lower memory ceiling We gained a lot of overhead by reducing the initial SpriteAtlas size. --- test/util/memory.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util/memory.test.cpp b/test/util/memory.test.cpp index f824ba30ca..97eabf9cb3 100644 --- a/test/util/memory.test.cpp +++ b/test/util/memory.test.cpp @@ -159,7 +159,7 @@ TEST(Memory, Footprint) { RecordProperty("vectorFootprint", vectorFootprint); RecordProperty("rasterFootprint", rasterFootprint); - ASSERT_LT(vectorFootprint, 65.2 * 1024 * 1024) << "\ + ASSERT_LT(vectorFootprint, 40 * 1024 * 1024) << "\ mbgl::Map footprint over 65.2MB for vector styles."; ASSERT_LT(rasterFootprint, 25 * 1024 * 1024) << "\ -- cgit v1.2.1