Index: test/fuzz-natives/base.js |
diff --git a/test/fuzz-natives/base.js b/test/fuzz-natives/base.js |
index d1f721d0c0b301eb35926fee39c5937ac58b1014..b9f70043fb5d7b6c4429e250a9a38d343180ba38 100644 |
--- a/test/fuzz-natives/base.js |
+++ b/test/fuzz-natives/base.js |
@@ -2,8 +2,6 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Flags: --allow-natives-syntax |
- |
// TODO(jkummerow): There are many ways to improve these tests, e.g.: |
// - more variance in randomized inputs |
// - better time complexity management |
@@ -17,9 +15,7 @@ function makeArguments() { |
result.push(17); |
result.push(-31); |
result.push(new Array(100)); |
- var a = %NormalizeElements([]); |
- a.length = 100003; |
- result.push(a); |
+ result.push(new Array(100003)); |
result.push(Number.MIN_VALUE); |
result.push("whoops"); |
result.push("x"); |