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

update readpartial document.

don't try read timeout on Windows.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7752 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2005-01-08 18:18:36 +00:00
parent 563a79c756
commit 16b5ba2707
2 changed files with 8 additions and 6 deletions

View file

@ -43,6 +43,7 @@ class TestReadPartial < Test::Unit::TestCase
}
end
if !File::ALT_SEPARATOR # read on pipe cannot timeout on Windows.
def test_open_pipe
pipe {|r, w|
w << 'abc'
@ -67,6 +68,7 @@ class TestReadPartial < Test::Unit::TestCase
}
}
end
end
end