summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-24 10:40:37 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-24 10:40:37 +0000
commit329729da551943645c60a9ebbfa7cbdfa7b8a043 (patch)
tree1609ae37b1445c8300d5e628672c0f2f309e735f
parent98e34b223b8a79c2984f2a6ab2296c8232dc209b (diff)
* io.c (rb_io_init_copy): copy encs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--io.c1
-rw-r--r--test/ruby/test_io_m17n.rb31
3 files changed, 34 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c6c23b22fe..57ffcb55be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Aug 24 19:40:13 2008 Tanaka Akira <akr@fsij.org>
+
+ * io.c (rb_io_init_copy): copy encs.
+
Sun Aug 24 19:17:31 2008 Tanaka Akira <akr@fsij.org>
* io.c (rb_io_open): add an argument: vperm.
diff --git a/io.c b/io.c
index c6abc43b10..9e919c0759 100644
--- a/io.c
+++ b/io.c
@@ -5075,6 +5075,7 @@ rb_io_init_copy(VALUE dest, VALUE io)
/* copy rb_io_t structure */
fptr->mode = orig->mode & ~FMODE_PREP;
+ fptr->encs = orig->encs;
fptr->pid = orig->pid;
fptr->lineno = orig->lineno;
if (!NIL_P(orig->pathv)) fptr->pathv = orig->pathv;
diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb
index c2254545f3..47d04a18d5 100644
--- a/test/ruby/test_io_m17n.rb
+++ b/test/ruby/test_io_m17n.rb
@@ -19,8 +19,8 @@ class TestIO_M17N < Test::Unit::TestCase
}
end
- def with_pipe(enc=nil)
- r, w = IO.pipe(enc)
+ def with_pipe(*args)
+ r, w = IO.pipe(*args)
begin
yield r, w
ensure
@@ -239,6 +239,33 @@ EOT
w.close if w && !w.closed?
end
+ def test_dup
+ with_pipe("utf-8:euc-jp") {|r, w|
+ w << "\u3042"
+ w.close
+ r2 = r.dup
+ begin
+ assert_equal("\xA4\xA2".force_encoding("euc-jp"), r2.read)
+ ensure
+ r2.close
+ end
+
+ }
+ end
+
+ def test_dup_undef
+ with_pipe("utf-8:euc-jp", :undef=>:replace) {|r, w|
+ w << "\uFFFD"
+ w.close
+ r2 = r.dup
+ begin
+ assert_equal("?", r2.read)
+ ensure
+ r2.close
+ end
+ }
+ end
+
def test_stdin
assert_equal(Encoding.default_external, STDIN.external_encoding)
assert_equal(nil, STDIN.internal_encoding)