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

* test/io/nonblock/test_flush.rb (TestIONonblock#test_flush): write

operation ignores EAGAIN.

* test/ruby/test_super.rb (TestSuper#test_define_method): test for
  super from proc.  [ruby-core:03856]

* test/socket/test_tcp.rb (TestTCPSocket#test_recvfrom): make
  execution order more precise.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-12-07 18:26:12 +00:00
parent d5b434088a
commit 807a93be08
3 changed files with 30 additions and 5 deletions

View file

@ -23,7 +23,7 @@ class TestIONonblock < Test::Unit::TestCase
end
}
assert_raise(IOError) {w.flush}
t.join
assert_equal("b", result)
assert_nothing_raised {t.join}
assert_equal(4097, result.size)
end
end if IO.method_defined?(:nonblock)