comparison: js/src/jit-test/tests/auto-regress/bug735313.js
js/src/jit-test/tests/auto-regress/bug735313.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 // |jit-test| slow; allow-oom; |
|
2 |
|
3 // Binary: cache/js-dbg-64-dfcb11712ec2-linux |
|
4 // Flags: |
|
5 // |
|
6 |
|
7 a=[]; |
|
8 for (var i=0; i<10; i++) { |
|
9 a[a.length] = a; |
|
10 } |
|
11 try { |
|
12 for (var i=0; i<26; i++) { |
|
13 a[a.length] = a.toString(); |
|
14 } |
|
15 } catch(exc1) {} |