summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-29 17:34:43 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-29 17:34:43 +0000
commit7d49e2bfc192126287fea10c2205822a98d128f1 (patch)
tree475fbaeeddfb540b59e25cdb49d1cf3de6d776ec /test/ruby
parent4c5d8bebe80e90236bfe919efe67130e97824868 (diff)
merge revision(s) r45979: [Backport #9847]
* io.c (io_setstrbuf): always check if the buffer is modifiable. [ruby-core:62643] [Bug #9847] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@46614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_io.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index a6f2b14abe..115a498474 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -2790,25 +2790,24 @@ End
def assert_buffer_not_raise_shared_string_error
bug6764 = '[ruby-core:46586]'
+ bug9847 = '[ruby-core:62643] [Bug #9847]'
size = 28
data = [*"a".."z", *"A".."Z"].shuffle.join("")
t = Tempfile.new("test_io")
t.write(data)
t.close
- w = Tempfile.new("test_io")
+ w = []
assert_nothing_raised(RuntimeError, bug6764) do
+ buf = ''
File.open(t.path, "r") do |r|
- buf = ''
while yield(r, size, buf)
- w << buf
+ w << buf.dup
end
end
end
- w.close
- assert_equal(data, w.open.read, bug6764)
+ assert_equal(data, w.join(""), bug9847)
ensure
t.close!
- w.close!
end
def test_read_buffer_not_raise_shared_string_error