summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-25 07:25:06 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-25 07:25:06 +0000
commitdb0a6590123c5405f209501c27367e7818eee514 (patch)
tree6f01a797fee6588143fc01a63016c1baae9df3aa /test
parentad558a3a7f13ad2ad1004bf0ed44c192b98bb529 (diff)
* io.c (flush_before_seek): check io_fflush result.
(rb_io_check_readable): ditto. (rb_io_flush): ditto. (rb_io_fsync): ditto. (remain_size): ditto. (rb_io_write_nonblock): ditto. (finish_writeconv): ditto. (fptr_finalize): ditto. (io_reopen): ditto. (rb_io_reopen): ditto. (copy_stream_body): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index e0350452d5..7739535ecd 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -1249,13 +1249,13 @@ class TestIO < Test::Unit::TestCase
def test_initialize
t = make_tempfile
- fd = IO.sysopen(t.path)
+ fd = IO.sysopen(t.path, "w")
assert_kind_of(Integer, fd)
f = IO.new(fd, "w")
f.write("FOO\n")
f.close
- assert_equal("foo\nbar\nbaz\n", File.read(t.path))
+ assert_equal("FOO\n", File.read(t.path))
f = open(t.path)
assert_raise(RuntimeError) do