Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Unified Diff: test/cctest/test-heap.cc

Issue 641533004: Fix IdleNotificationFinishMarking test on slow devices. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-heap.cc
diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc
index 969fd8824d2b20ed76bac324a4a91d8535af9b21..e2c2ca607c6ad45ca2ec0e2d7888fc55c957a98a 100644
--- a/test/cctest/test-heap.cc
+++ b/test/cctest/test-heap.cc
@@ -2219,8 +2219,8 @@ TEST(IdleNotificationFinishMarking) {
}
// The next idle notification has to finish incremental marking.
- const int kShortIdleTimeInMs = 1;
- CcTest::isolate()->IdleNotification(kShortIdleTimeInMs);
+ const int kLongIdleTime = 1000000;
+ CcTest::isolate()->IdleNotification(kLongIdleTime);
CHECK_EQ(CcTest::heap()->gc_count(), 1);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698