Revision: 5628
Author: [email protected]
Date: Fri Oct 15 03:45:18 2010
Log: Fix new-space-too-small test crash on 64 bit VM.
Review URL: http://codereview.chromium.org/3778009
http://code.google.com/p/v8/source/detail?r=5628

Modified:
 /branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js

=======================================
--- /branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js Fri Oct 15 00:54:20 2010 +++ /branches/bleeding_edge/test/mjsunit/regress/regress-create-exception.js Fri Oct 15 03:45:18 2010
@@ -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=128
+// Flags: --max-new-space-size=256

 // Check for GC bug constructing exceptions.
 var v = [1, 2, 3, 4]
@@ -34,7 +34,7 @@

 function foo() {
   var re = /2147483647/;  // Equal to 0x7fffffff.
-  for  (var i = 0; i < 7000; i++) {
+  for  (var i = 0; i < 10000; i++) {
     var ok = false;
     try {
       var j = 1;

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to