From 037a9d06559e25cce2368979cecba710ddb4765d Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 10 Dec 2013 14:44:51 +0000 Subject: array.c, hash.c: add salt * array.c (rb_ary_hash): add salt to differentiate false and empty array. [ruby-core:58993] [Bug #9231] * hash.c (rb_any_hash, rb_hash_hash): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_array.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/ruby/test_array.rb') diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 1f434e37fa..fb78085e61 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -909,6 +909,8 @@ class TestArray < Test::Unit::TestCase a3 = @cls[ 'dog', 'cat' ] assert_equal(a1.hash, a2.hash) assert_not_equal(a1.hash, a3.hash) + bug9231 = '[ruby-core:58993] [Bug #9231]' + assert_not_equal(false.hash, @cls[].hash, bug9231) end def test_include? -- cgit v1.2.3