aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@ruby-lang.org>2017-09-07 03:24:08 +0000
committerKazuki Yamaguchi <k@rhe.jp>2017-09-08 22:35:50 +0900
commitd7984397f8fa6afc836175cc5ce1ca17ddeb630e (patch)
tree6e16c21e41180fbd7d4814a60eaa188d874a7c0f /test
parent8ed81ff4b0a893376f949c006942fea8f7fba8c3 (diff)
downloadruby-openssl-d7984397f8fa6afc836175cc5ce1ca17ddeb630e.tar.gz
ruby.h: unnormalized Fixnum value
* include/ruby/ruby.h (ST2FIX): fix unnormalized Fixnum value bug on mingw/mswin. [ruby-core:82687] [Bug #13877] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e [ky: add ST2FIX() definition to ext/openssl/ruby_missing.h, and adapt the test case to the 2.0 branch.] Sync-with-trunk: r59765
Diffstat (limited to 'test')
-rw-r--r--test/test_bn.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_bn.rb b/test/test_bn.rb
index 37ba5e55..5f3ae2b4 100644
--- a/test/test_bn.rb
+++ b/test/test_bn.rb
@@ -55,6 +55,7 @@ class OpenSSL::TestBN < OpenSSL::TestCase
assert_equal(false, bn1.eql?(bn3))
assert_equal(bn1.hash, bn2.hash)
assert_not_equal(bn3.hash, bn1.hash)
+ assert_instance_of(String, bn1.hash.to_s)
end
end