Index: test/mjsunit/compiler/math-floor-local.js |
diff --git a/test/mjsunit/compiler/math-floor-local.js b/test/mjsunit/compiler/math-floor-local.js |
index e44b15c734c5a124c1663940fc95b9df3546da05..fef3347e800bf083069a32106d12fa65467b6fc2 100644 |
--- a/test/mjsunit/compiler/math-floor-local.js |
+++ b/test/mjsunit/compiler/math-floor-local.js |
@@ -25,7 +25,7 @@ |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-// Flags: --max-new-space-size=256 --allow-natives-syntax |
+// Flags: --max-new-space-size=128 --allow-natives-syntax |
// Test inlining of Math.floor when assigned to a local. |
var test_id = 0; |
@@ -140,8 +140,9 @@ function test() { |
// Test in a loop to cover the custom IC and GC-related issues. |
-for (var i = 0; i < 50; i++) { |
+for (var i = 0; i < 10; i++) { |
test(); |
+ new Array(i * 10000); |
} |