Fix number-string cache test case.

TBR=jochen@chromium.org

Review URL: https://codereview.chromium.org/843913008

Cr-Commit-Position: refs/heads/master@{#26073}
This commit is contained in:
Yang Guo 2015-01-15 12:48:57 +01:00
parent 22e6958d63
commit 3706a50457

View File

@ -36,6 +36,7 @@
#include "src/global-handles.h"
#include "src/ic/ic.h"
#include "src/macro-assembler.h"
#include "src/snapshot.h"
#include "test/cctest/cctest.h"
using namespace v8::internal;
@ -5090,10 +5091,11 @@ TEST(Regress442710) {
TEST(NumberStringCacheSize) {
if (!Snapshot::HaveASnapshotToStartFrom()) return;
// Test that the number-string cache has not been resized in the snapshot.
CcTest::InitializeVM();
Isolate* isolate = CcTest::i_isolate();
Heap* heap = isolate->heap();
// Test that the number-string cache has not been resized.
CHECK_EQ(TestHeap::kInitialNumberStringCacheSize * 2,
heap->number_string_cache()->length());
}