summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_pty.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test_pty.rb b/test/test_pty.rb
index 6787da4d2..bbf85a3d3 100644
--- a/test/test_pty.rb
+++ b/test/test_pty.rb
@@ -13,7 +13,6 @@ class TestPTY < Test::Unit::TestCase
def test_spawn_without_block
r, w, pid = PTY.spawn(RUBY, '-e', 'puts "a"')
assert_equal("a\r\n", r.gets)
- assert_raise(Errno::EIO) { r.gets }
ensure
Process.wait pid if pid
end
@@ -22,7 +21,6 @@ class TestPTY < Test::Unit::TestCase
PTY.spawn(RUBY, '-e', 'puts "b"') {|r,w,pid|
assert_equal("b\r\n", r.gets)
Process.wait(pid)
- assert_raise(Errno::EIO) { r.gets }
}
end
@@ -31,7 +29,6 @@ class TestPTY < Test::Unit::TestCase
PTY.spawn(commandline) {|r,w,pid|
assert_equal("foo\r\n", r.gets)
Process.wait(pid)
- assert_raise(Errno::EIO) { r.gets }
}
end
@@ -39,7 +36,6 @@ class TestPTY < Test::Unit::TestCase
PTY.spawn([RUBY, "argv0"], '-e', 'puts "bar"') {|r,w,pid|
assert_equal("bar\r\n", r.gets)
Process.wait(pid)
- assert_raise(Errno::EIO) { r.gets }
}
end
end if defined? PTY