Merge pull request #2016 from test262-automation/javascriptcore-test262-automation-export-8f629cd87f

Import test changes from JavaScriptCore
This commit is contained in:
Leo Balter 2019-01-17 17:03:22 -02:00 committed by GitHub
commit fa20160767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"sourceRevisionAtLastExport": "801a7d15df",
"targetRevisionAtLastExport": "8f629cd87f",
"sourceRevisionAtLastExport": "344dd04163",
"targetRevisionAtLastExport": "4146be1823",
"curatedFiles": {
"/stress/Number-isNaN-basics.js": "DELETED_IN_TARGET",
"/stress/Object_static_methods_Object.getOwnPropertyDescriptors-proxy.js": "DELETED_IN_TARGET",

View File

@ -0,0 +1,27 @@
//@ 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";