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

Unified Diff: test/cctest/test-mark-compact.cc

Issue 18014003: Add X32 port into V8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 6 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
Index: test/cctest/test-mark-compact.cc
===================================================================
--- test/cctest/test-mark-compact.cc (revision 15486)
+++ test/cctest/test-mark-compact.cc (working copy)
@@ -558,9 +558,17 @@
}
} else { // 32-bit.
if (v8::internal::Snapshot::IsEnabled()) {
+#ifndef V8_TARGET_ARCH_X32
danno 2013/07/17 13:33:21 I don't think the limits should be special cased,
CHECK_LE(delta, 3100 * 1024);
+#else
+ CHECK_LE(delta, 3700 * 1024);
+#endif
} else {
+#ifndef V8_TARGET_ARCH_X32
CHECK_LE(delta, 3400 * 1024);
+#else
+ CHECK_LE(delta, 3900 * 1024);
+#endif
}
}
}

Powered by Google App Engine
This is Rietveld 408576698