[javascriptcore-test262-automation] Changes from https://github.com/webkit/webkit.git at sha 93457d631e on Wed Aug 22 2018 18:13:32 GMT+0000 (Coordinated Universal Time)

This commit is contained in:
test262-automation 2018-08-22 18:15:45 +00:00
parent d296cc93ee
commit 5032c509e0
1 changed files with 12 additions and 0 deletions

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();