* test/io/nonblock/test_flush.rb (test_flush): try pipe and

socketpair.  [ruby-dev:41517]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-06-03 04:05:20 +00:00
Родитель 3a08f62b4f
Коммит 188881b2a8
2 изменённых файлов: 16 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Jun 3 13:05:15 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/io/nonblock/test_flush.rb (test_flush): try pipe and
socketpair. [ruby-dev:41517]
Thu Jun 3 09:36:43 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/dl/dl.h (DLSTACK_TYPE): type of stack is same as VALUE.

Просмотреть файл

@ -7,8 +7,17 @@ end
class TestIONonblock < Test::Unit::TestCase
def test_flush
r,w = IO.pipe
w.nonblock = true
flush_test(*IO.pipe) or
(require 'socket'; flush_test(*Socket.pair(:INET, :STREAM))) or
skip "nonblocking IO did not work"
end
def flush_test(r, w)
begin
w.nonblock = true
rescue Errno::EBADF
return false
end
w.sync = false
w << "b"
w.flush