1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_io_m17n.rb (test_pipe): fixed.

[ruby-dev:32743]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-12-25 04:54:49 +00:00
parent 884f1eed2c
commit ba85206635
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Dec 25 13:54:01 2007 Tanaka Akira <akr@fsij.org>
* test/ruby/test_io_m17n.rb (test_pipe): fixed.
[ruby-dev:32743]
Tue Dec 25 13:44:51 2007 Koichi Sasada <ko1@atdot.net>
* thread.c (rb_thread_wait_fd_rw): should check EBADF on select().

View file

@ -342,7 +342,7 @@ EOT
w.close
s = r.read
assert_equal(Encoding.default_external, s.encoding)
assert_str_equal(utf8, s)
assert_str_equal(utf8.dup.force_encoding(Encoding.default_external), s)
}
with_pipe("EUC-JP") {|r,w|