Reducing number of iterations in tests/jerry/nested_function.js 10000 -> 1000.

This commit is contained in:
Ruben Ayrapetyan
2014-09-17 12:55:22 +04:00
parent d4cd8be349
commit 64613b5513
+1 -1
View File
@@ -35,7 +35,7 @@ function f1()
var k;
var i;
for(i = 0; i < 10000; i++)
for(i = 0; i < 1000; i++)
{
f1();
}