From 1d9cebd0024b094413bf09faabf0da260ae9429d Mon Sep 17 00:00:00 2001 From: "erik.corry@gmail.com" Date: Mon, 2 Apr 2012 13:29:04 +0000 Subject: [PATCH] Loosen up the test for boot time memory use on 64 bit. Review URL: https://chromiumcodereview.appspot.com/9969051 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11209 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/cctest/test-mark-compact.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cctest/test-mark-compact.cc b/test/cctest/test-mark-compact.cc index d87c018724..83a576d367 100644 --- a/test/cctest/test-mark-compact.cc +++ b/test/cctest/test-mark-compact.cc @@ -534,9 +534,9 @@ TEST(BootUpMemoryUse) { intptr_t booted_memory = MemoryInUse(); if (sizeof(initial_memory) == 8) { if (v8::internal::Snapshot::IsEnabled()) { - CHECK_LE(booted_memory - initial_memory, 3500 * 1024); // 3396. + CHECK_LE(booted_memory - initial_memory, 3600 * 1024); // 3396. } else { - CHECK_LE(booted_memory - initial_memory, 3500 * 1024); // 3432. + CHECK_LE(booted_memory - initial_memory, 3600 * 1024); // 3432. } } else { if (v8::internal::Snapshot::IsEnabled()) {