Revision: 21104
Author: [email protected]
Date: Wed Apr 30 19:32:47 2014 UTC
Log: Remove max space limits in tests.
BUG=
Review URL: https://codereview.chromium.org/263703003
http://code.google.com/p/v8/source/detail?r=21104
Modified:
/branches/bleeding_edge/test/mjsunit/binary-op-newspace.js
/branches/bleeding_edge/test/mjsunit/compiler/math-floor-global.js
/branches/bleeding_edge/test/mjsunit/compiler/math-floor-local.js
/branches/bleeding_edge/test/mjsunit/define-property-gc.js
/branches/bleeding_edge/test/mjsunit/math-abs.js
/branches/bleeding_edge/test/mjsunit/math-floor-part1.js
/branches/bleeding_edge/test/mjsunit/math-floor-part2.js
/branches/bleeding_edge/test/mjsunit/math-floor-part3.js
/branches/bleeding_edge/test/mjsunit/math-floor-part4.js
/branches/bleeding_edge/test/mjsunit/regress/regress-1708.js
/branches/bleeding_edge/test/mjsunit/regress/regress-99167.js
/branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js
=======================================
--- /branches/bleeding_edge/test/mjsunit/binary-op-newspace.js Wed Apr 30
18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/binary-op-newspace.js Wed Apr 30
19:32:47 2014 UTC
@@ -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-old-space-size=256 --max-new-space-size=256 --noopt
+// Flags: --noopt
// Check that a mod where the stub code hits a failure in heap number
// allocation still works.
=======================================
--- /branches/bleeding_edge/test/mjsunit/compiler/math-floor-global.js Wed
Apr 30 18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/compiler/math-floor-global.js Wed
Apr 30 19:32:47 2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=128
// Flags: --allow-natives-syntax
// Test inlining of Math.floor when assigned to a global.
=======================================
--- /branches/bleeding_edge/test/mjsunit/compiler/math-floor-local.js Wed
Apr 30 18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/compiler/math-floor-local.js Wed
Apr 30 19:32:47 2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=128
// Flags: --allow-natives-syntax
// Test inlining of Math.floor when assigned to a local.
=======================================
--- /branches/bleeding_edge/test/mjsunit/define-property-gc.js Wed Apr 30
18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/define-property-gc.js Wed Apr 30
19:32:47 2014 UTC
@@ -26,7 +26,6 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Tests the handling of GC issues in the defineProperty method.
-// Flags: --max-old-space-size=256 --max-new-space-size=256
function Regular() {
this[0] = 0;
=======================================
--- /branches/bleeding_edge/test/mjsunit/math-abs.js Wed Apr 30 18:57:25
2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/math-abs.js Wed Apr 30 19:32:47
2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=256
// Flags: --allow-natives-syntax
function zero() {
=======================================
--- /branches/bleeding_edge/test/mjsunit/math-floor-part1.js Wed Apr 30
18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/math-floor-part1.js Wed Apr 30
19:32:47 2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=128
// Flags: --allow-natives-syntax
var test_id = 0;
=======================================
--- /branches/bleeding_edge/test/mjsunit/math-floor-part2.js Wed Apr 30
18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/math-floor-part2.js Wed Apr 30
19:32:47 2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=256
// Flags: --allow-natives-syntax
var test_id = 0;
=======================================
--- /branches/bleeding_edge/test/mjsunit/math-floor-part3.js Wed Apr 30
18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/math-floor-part3.js Wed Apr 30
19:32:47 2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=256
// Flags: --allow-natives-syntax
var test_id = 0;
=======================================
--- /branches/bleeding_edge/test/mjsunit/math-floor-part4.js Wed Apr 30
18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/math-floor-part4.js Wed Apr 30
19:32:47 2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=256
// Flags: --allow-natives-syntax
var test_id = 0;
=======================================
--- /branches/bleeding_edge/test/mjsunit/regress/regress-1708.js Wed Apr 30
18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/regress/regress-1708.js Wed Apr 30
19:32:47 2014 UTC
@@ -32,8 +32,7 @@
// sure that concurrent sweeping, which relies on similar assumptions
// as lazy sweeping works correctly.
-// Flags: --expose-gc --noincremental-marking --max-new-space-size=1000
-// Flags: --max-old-space-size=256
+// Flags: --expose-gc --noincremental-marking
(function() {
var head = new Array(1);
=======================================
--- /branches/bleeding_edge/test/mjsunit/regress/regress-99167.js Wed Apr
30 18:57:25 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/regress/regress-99167.js Wed Apr
30 19:32:47 2014 UTC
@@ -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: --expose-gc --max-old-space-size=256 --max-new-space-size=1024
+// Flags: --expose-gc
eval("function Node() { this.a = 1; this.a = 3; }");
new Node;
=======================================
---
/branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js
Wed Apr 30 18:57:25 2014 UTC
+++
/branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js
Wed Apr 30 19:32:47 2014 UTC
@@ -25,7 +25,6 @@
// (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-old-space-size=256 --max-new-space-size=256
"use strict";
// Check for GC bug constructing exceptions.
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.