diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-03-02 04:54:19 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-03-02 04:54:19 +0000 |
commit | 033c4a083d724f986bba85c769380ab0b579a484 (patch) | |
tree | 313127bfefacec92441050897238f7ae26bf75a0 /test/ruby/test_bignum.rb | |
parent | 6e0967ec6de2be595bd8de8725bfbe334fd1ed82 (diff) |
test: use RbConfig::Limits
* test/lib/envutil.rb: rbconfig/sizeof may not be available when
cross-compiling. use RbConfig::Limits instead of calculating
limits of Fixnum with hard-coded CHAR_BIT.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_bignum.rb')
-rw-r--r-- | test/ruby/test_bignum.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_bignum.rb b/test/ruby/test_bignum.rb index 15811d5d43..4cdf86d6d4 100644 --- a/test/ruby/test_bignum.rb +++ b/test/ruby/test_bignum.rb @@ -6,8 +6,8 @@ rescue LoadError else class TestBignum < Test::Unit::TestCase - FIXNUM_MIN = Integer::FIXNUM_MIN - FIXNUM_MAX = Integer::FIXNUM_MAX + FIXNUM_MIN = RbConfig::Limits['FIXNUM_MIN'] + FIXNUM_MAX = RbConfig::Limits['FIXNUM_MAX'] BIGNUM_MIN = FIXNUM_MAX + 1 b = BIGNUM_MIN |