Skip to content
Snippets Groups Projects
Commit 4146be18 authored by test262-automation's avatar test262-automation
Browse files

[javascriptcore-test262-automation] Changes from...

[javascriptcore-test262-automation] Changes from https://github.com/webkit/webkit.git at sha 801a7d15df on Fri Dec 21 2018 19:18:17 GMT+0000 (Coordinated Universal Time)
parent 90ca332e
No related branches found
No related tags found
No related merge requests found
//@ requireOptions("--maxPerThreadStackUsage=1572864")
function foo(a, b, c) {
try {
throw new Error();
} catch {
hello();
}
};
function Bar(d, e) {
hello();
}
function hello(f) {
new Bar(0);
};
var exception;
try {
foo();
} catch(e) {
exception = e;
}
if (exception != "RangeError: Maximum call stack size exceeded.")
throw "FAILED";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment