Skip to content

Commit

Permalink
test: use a different way to trigger stack overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hashseed authored and targos committed Mar 8, 2017
1 parent 9358d6d commit d4bd50a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions test/message/stack_overflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ Error.stackTraceLimit = 0;

console.error('before');

// stack overflow
function stackOverflow() {
stackOverflow();
// Trigger stack overflow by stringifying a deeply nested array.
let array = [];
for (let i = 0; i < 100000; i++) {
array = [ array ];
}
stackOverflow();

JSON.stringify(array);

console.error('after');
6 changes: 3 additions & 3 deletions test/message/stack_overflow.out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
before

*test*message*stack_overflow.js:*
function stackOverflow() {
^
JSON.stringify(array);
^

RangeError: Maximum call stack size exceeded

0 comments on commit d4bd50a

Please sign in to comment.