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

Unified Diff: test/mjsunit/date-parse.js

Issue 126192: Avoid going into runtime system for round-towards-zero operations on ARM. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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/mjsunit/date-parse.js
===================================================================
--- test/mjsunit/date-parse.js (revision 2165)
+++ test/mjsunit/date-parse.js (working copy)
@@ -254,7 +254,7 @@
for (var i = 0; i < 24 * 365 * 100; i += 95) {
var ms = i * (3600 * 1000);
var s = (new Date(ms)).toString();
- assertEquals(ms, Date.parse(s), s);
+ assertEquals(ms, Date.parse(s), "parse own: " + s);
}
// Negative tests.
« src/arm/codegen-arm.cc ('K') | « src/arm/codegen-arm.cc ('k') | test/mjsunit/toint32.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698