From 38b47eaba789d2f303588850c4279cf0953efc37 Mon Sep 17 00:00:00 2001 From: Ruben Ayrapetyan Date: Mon, 13 Oct 2014 19:34:10 +0400 Subject: [PATCH] Reducing number of iterations in nested_function.js: 1000 -> 100. --- tests/jerry/nested_function.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/jerry/nested_function.js b/tests/jerry/nested_function.js index 232a88d6d..0e42c3046 100644 --- a/tests/jerry/nested_function.js +++ b/tests/jerry/nested_function.js @@ -35,7 +35,7 @@ function f1() var k; var i; -for(i = 0; i < 1000; i++) +for(i = 0; i < 100; i++) { f1(); }