Revision: 21103
Author:   [email protected]
Date:     Wed Apr 30 18:57:25 2014 UTC
Log:      Limit old space size in test which require a large new space.

BUG=

Review URL: https://codereview.chromium.org/265673003
http://code.google.com/p/v8/source/detail?r=21103

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 May 25 10:35:00 2011 UTC +++ /branches/bleeding_edge/test/mjsunit/binary-op-newspace.js Wed Apr 30 18:57:25 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-new-space-size=256 --noopt
+// Flags: --max-old-space-size=256 --max-new-space-size=256 --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 Tue Nov 26 11:32:39 2013 UTC +++ /branches/bleeding_edge/test/mjsunit/compiler/math-floor-global.js Wed Apr 30 18:57:25 2014 UTC
@@ -25,7 +25,8 @@
 // (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=128 --allow-natives-syntax
+// 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.
 var flo = Math.floor;
=======================================
--- /branches/bleeding_edge/test/mjsunit/compiler/math-floor-local.js Tue Nov 26 11:32:39 2013 UTC +++ /branches/bleeding_edge/test/mjsunit/compiler/math-floor-local.js Wed Apr 30 18:57:25 2014 UTC
@@ -25,7 +25,8 @@
 // (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=128 --allow-natives-syntax
+// 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.
 var test_id = 0;
=======================================
--- /branches/bleeding_edge/test/mjsunit/define-property-gc.js Fri Mar 18 19:41:05 2011 UTC +++ /branches/bleeding_edge/test/mjsunit/define-property-gc.js Wed Apr 30 18:57:25 2014 UTC
@@ -26,7 +26,7 @@
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 // Tests the handling of GC issues in the defineProperty method.
-// Flags: --max-new-space-size=256
+// Flags: --max-old-space-size=256 --max-new-space-size=256

 function Regular() {
   this[0] = 0;
=======================================
--- /branches/bleeding_edge/test/mjsunit/math-abs.js Fri Aug 2 08:59:02 2013 UTC +++ /branches/bleeding_edge/test/mjsunit/math-abs.js Wed Apr 30 18:57:25 2014 UTC
@@ -25,7 +25,8 @@
 // (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-old-space-size=256 --max-new-space-size=256
+// Flags: --allow-natives-syntax

 function zero() {
   var x = 0.5;
=======================================
--- /branches/bleeding_edge/test/mjsunit/math-floor-part1.js Wed Apr 30 13:38:00 2014 UTC +++ /branches/bleeding_edge/test/mjsunit/math-floor-part1.js Wed Apr 30 18:57:25 2014 UTC
@@ -25,7 +25,8 @@
 // (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=128 --allow-natives-syntax
+// 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 13:38:00 2014 UTC +++ /branches/bleeding_edge/test/mjsunit/math-floor-part2.js Wed Apr 30 18:57:25 2014 UTC
@@ -25,7 +25,8 @@
 // (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-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 13:38:00 2014 UTC +++ /branches/bleeding_edge/test/mjsunit/math-floor-part3.js Wed Apr 30 18:57:25 2014 UTC
@@ -25,7 +25,8 @@
 // (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-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 13:38:00 2014 UTC +++ /branches/bleeding_edge/test/mjsunit/math-floor-part4.js Wed Apr 30 18:57:25 2014 UTC
@@ -25,7 +25,8 @@
 // (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-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 Fri Apr 25 09:50:42 2014 UTC +++ /branches/bleeding_edge/test/mjsunit/regress/regress-1708.js Wed Apr 30 18:57:25 2014 UTC
@@ -32,7 +32,8 @@
 // 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: --expose-gc --noincremental-marking --max-new-space-size=1000
+// Flags: --max-old-space-size=256

 (function() {
   var head = new Array(1);
=======================================
--- /branches/bleeding_edge/test/mjsunit/regress/regress-99167.js Mon Oct 10 10:46:27 2011 UTC +++ /branches/bleeding_edge/test/mjsunit/regress/regress-99167.js Wed Apr 30 18:57:25 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-new-space-size=1024
+// Flags: --expose-gc --max-old-space-size=256 --max-new-space-size=1024

 eval("function Node() { this.a = 1; this.a = 3; }");
 new Node;
=======================================
--- /branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js Mon Mar 28 06:11:08 2011 UTC +++ /branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js Wed Apr 30 18:57:25 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-new-space-size=256
+// 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.

Reply via email to