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

* test/io/console/test_io_console.rb (run_pty): Avoid waiting twice

for a process. Fix Errno::ECHILD in TestIO_Console#test_close and
  TestIO_Console#test_sync.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ngoto 2015-12-08 14:33:29 +00:00
parent 6ee61d4bb9
commit d573666e62
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Tue Dec 8 23:30:07 2015 Naohisa Goto <ngotogenome@gmail.com>
* test/io/console/test_io_console.rb (run_pty): Avoid waiting twice
for a process. Fix Errno::ECHILD in TestIO_Console#test_close and
TestIO_Console#test_sync.
Tue Dec 8 23:05:47 2015 Koichi Sasada <ko1@atdot.net>
* compile.c (iseq_ibf_dump): fix for clang type checker.

View file

@ -285,7 +285,6 @@ class TestIO_Console < Test::Unit::TestCase
else
result = []
n.times {result << r.gets.chomp}
Process.wait(pid)
result
end
ensure