summaryrefslogtreecommitdiff
path: root/test/util
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-03-08 12:04:28 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-03-08 13:10:38 -0800
commit84aac92b4eaf264de66c07b98e267364e34e14f0 (patch)
tree8ed5ef15dbbf8b4db64b92eabe1fc4c81c3ea031 /test/util
parenta517323bfc77c33d40a0a43a1fb2f79a6761bbe6 (diff)
downloadqtlocation-mapboxgl-84aac92b4eaf264de66c07b98e267364e34e14f0.tar.gz
[test] Increase memory test ceiling slightly
Diffstat (limited to 'test/util')
-rw-r--r--test/util/memory.test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/util/memory.test.cpp b/test/util/memory.test.cpp
index d49c49018f..79a3c43dbd 100644
--- a/test/util/memory.test.cpp
+++ b/test/util/memory.test.cpp
@@ -157,8 +157,8 @@ TEST(Memory, Footprint) {
RecordProperty("vectorFootprint", vectorFootprint);
RecordProperty("rasterFootprint", rasterFootprint);
- ASSERT_LT(vectorFootprint, 65 * 1024 * 1024) << "\
- mbgl::Map footprint over 65MB for vector styles.";
+ ASSERT_LT(vectorFootprint, 65.2 * 1024 * 1024) << "\
+ mbgl::Map footprint over 65.2MB for vector styles.";
ASSERT_LT(rasterFootprint, 25 * 1024 * 1024) << "\
mbgl::Map footprint over 25MB for raster styles.";