Changeset 33322

Show
Ignore:
Timestamp:
05/12/08 23:03:16 (6 months ago)
Author:
mrowe@apple.com
Message:

2008-05-01 Maciej Stachowiak <mjs@apple.com>

Reviewed by Oliver.

  • bump up the numbers in this test to account for our now much higher recursion capability.
  • fast/js/deep-recursion-test.html:
Location:
branches/squirrelfish/LayoutTests
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/squirrelfish/LayoutTests/ChangeLog

    r33295 r33322  
     12008-05-01  Maciej Stachowiak  <mjs@apple.com> 
     2 
     3        Reviewed by Oliver. 
     4         
     5        - bump up the numbers in this test to account for our now much 
     6        higher recursion capability. 
     7 
     8        * fast/js/deep-recursion-test.html: 
     9 
    1102008-04-26  Oliver Hunt  <oliver@apple.com> 
    211 
  • branches/squirrelfish/LayoutTests/fast/js/deep-recursion-test.html

    r25161 r33322  
    1717 
    1818    try { 
    19         simpleRecursion(499); 
     19        simpleRecursion(100000); 
    2020    } catch (ex) { 
    2121        debug(ex); 
     
    2323 
    2424    try { 
    25         simpleRecursion(500); 
     25        simpleRecursion(10000000); 
    2626    } catch (ex) { 
    2727        var msg = String(eval(ex)); 
     
    3030     
    3131    try { 
    32         simpleRecursion(1000); 
     32        simpleRecursion(1000000000); 
    3333    } catch (ex) { 
    3434        var msg = String(eval(ex));