Merge pull request #1690 from test262-automation/javascriptcore-test262-automation-export-04c056b95

Import test changes from JavaScriptCore
This commit is contained in:
Leo Balter 2018-08-22 16:33:57 -04:00 committed by GitHub
commit 5bb0f4c820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"sourceRevisionAtLastExport": "93457d631e",
"targetRevisionAtLastExport": "04c056b95",
"sourceRevisionAtLastExport": "12df785646",
"targetRevisionAtLastExport": "5032c509e",
"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,12 @@
// This test passes if it does not crash.
function foo() {
if (1 < 2);
while (true) {
if (1 < 2) break;
}
}
for (var i = 0; i < 10000; i++)
foo();