diff options
author | Samuel Williams <[email protected]> | 2022-10-15 01:45:51 +1300 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-15 01:45:51 +1300 |
commit | d4162053410782a449e0921ee7222e7ce3deca6f (patch) | |
tree | 4e678661f05846195bdc38be5c321ffee1567ebf | |
parent | 7b7e5153e81288fe57ae64f2e1db228435156aeb (diff) |
Copy `IO#timeout` on `IO#dup`. (#6546)
Notes
Notes:
Merged-By: ioquatix <[email protected]>
-rw-r--r-- | io.c | 1 | ||||
-rw-r--r-- | test/ruby/test_io.rb | 8 |
2 files changed, 9 insertions, 0 deletions
@@ -8407,6 +8407,7 @@ rb_io_init_copy(VALUE dest, VALUE io) fptr->encs = orig->encs; fptr->pid = orig->pid; fptr->lineno = orig->lineno; + fptr->timeout = orig->timeout; if (!NIL_P(orig->pathv)) fptr->pathv = orig->pathv; fptr_copy_finalizer(fptr, orig); diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 0c8beb2f95..989c4c8991 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -1441,6 +1441,14 @@ class TestIO < Test::Unit::TestCase End end + def test_dup_timeout + with_pipe do |r, w| + r.timeout = 0.1 + r2 = r.dup + assert_equal(0.1, r2.timeout) + end + end + def test_inspect with_pipe do |r, w| assert_match(/^#<IO:fd \d+>$/, r.inspect) |