Revision: 2741
Author: [email protected]
Date: Mon Aug 24 02:08:12 2009
Log: Reduce the amount of dates tested in date-parse test.  The test  
occasionally times out on ARM hardware.


Review URL: http://codereview.chromium.org/174316
http://code.google.com/p/v8/source/detail?r=2741

Modified:
  /branches/bleeding_edge/test/mjsunit/date-parse.js

=======================================
--- /branches/bleeding_edge/test/mjsunit/date-parse.js  Thu Jul  9 04:46:30  
2009
+++ /branches/bleeding_edge/test/mjsunit/date-parse.js  Mon Aug 24 02:08:12  
2009
@@ -250,8 +250,8 @@


  // Test that we can parse our own date format.
-// (Dates from 1970 to ~2070 with 95h steps.)
-for (var i = 0; i < 24 * 365 * 100; i += 95) {
+// (Dates from 1970 to ~2070 with 150h steps.)
+for (var i = 0; i < 24 * 365 * 100; i += 150) {
    var ms = i * (3600 * 1000);
    var s = (new Date(ms)).toString();
    assertEquals(ms, Date.parse(s), "parse own: " + s);

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to