Changeset 33322
- Timestamp:
- 05/12/08 23:03:16 (6 months ago)
- Location:
- branches/squirrelfish/LayoutTests
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
fast/js/deep-recursion-test.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/squirrelfish/LayoutTests/ChangeLog
r33295 r33322 1 2008-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 1 10 2008-04-26 Oliver Hunt <oliver@apple.com> 2 11 -
branches/squirrelfish/LayoutTests/fast/js/deep-recursion-test.html
r25161 r33322 17 17 18 18 try { 19 simpleRecursion( 499);19 simpleRecursion(100000); 20 20 } catch (ex) { 21 21 debug(ex); … … 23 23 24 24 try { 25 simpleRecursion( 500);25 simpleRecursion(10000000); 26 26 } catch (ex) { 27 27 var msg = String(eval(ex)); … … 30 30 31 31 try { 32 simpleRecursion(1000 );32 simpleRecursion(1000000000); 33 33 } catch (ex) { 34 34 var msg = String(eval(ex));