From 9343634c6dde6787b549597b18bb2ee796e43924 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 29 Feb 2008 17:44:15 +0000 Subject: * test/ruby/test_bignum.rb (test_too_big_to_s): skips a test using too large memory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@15647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_bignum.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/ruby/test_bignum.rb b/test/ruby/test_bignum.rb index bfc47784f0..99c5952173 100644 --- a/test/ruby/test_bignum.rb +++ b/test/ruby/test_bignum.rb @@ -97,9 +97,8 @@ class TestBignum < Test::Unit::TestCase end def test_too_big_to_s - i = 32 - while (big = 2**(i-1)-1).is_a?(Fixnum) - i *= 2 + if (big = 2**31-1).is_a?(Fixnum) + return end e = assert_raise(RangeError) {(1 << big).to_s} assert_match(/too big to convert/, e.message) -- cgit v1.2.3