diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-17 05:57:53 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-17 05:57:53 +0000 |
commit | 7ae1aa3735f1021ac02dc3fac0a473b4939cb15d (patch) | |
tree | 1db410b70fe098ad79af3b3fb285ae65fba9bb24 | |
parent | 3415760c4a1007bebb792315b0b5c0378d7d1d5f (diff) | |
download | ruby-7ae1aa3735f1021ac02dc3fac0a473b4939cb15d.tar.gz ruby-7ae1aa3735f1021ac02dc3fac0a473b4939cb15d.tar.xz ruby-7ae1aa3735f1021ac02dc3fac0a473b4939cb15d.zip |
* test/ruby/test_readpartial.rb (test_open_pipe, test_with_stdio):
these tests are working now, so turned on. (windows)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/ruby/test_readpartial.rb | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Sat Sep 17 14:54:40 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * test/ruby/test_readpartial.rb (test_open_pipe, test_with_stdio): + these tests are working now, so turned on. (windows) + Sat Sep 17 14:18:15 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * win32/win32.c (rb_w32_select): I hope performance problem was diff --git a/test/ruby/test_readpartial.rb b/test/ruby/test_readpartial.rb index 3877e21f8..526425dc5 100644 --- a/test/ruby/test_readpartial.rb +++ b/test/ruby/test_readpartial.rb @@ -43,7 +43,6 @@ 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' @@ -68,7 +67,6 @@ class TestReadPartial < Test::Unit::TestCase } } end - end end |