mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/io/nonblock/test_flush.rb: abandon tests when io/nonblock is
not supported. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
83cb605d69
commit
37eb7502db
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Nov 29 15:22:28 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/io/nonblock/test_flush.rb: abandon tests when io/nonblock is
|
||||||
|
not supported.
|
||||||
|
|
||||||
Mon Nov 29 13:37:54 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Mon Nov 29 13:37:54 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* io.c (fptr_finalize): must not use FILE after fclose().
|
* io.c (fptr_finalize): must not use FILE after fclose().
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
|
begin
|
||||||
require 'io/nonblock'
|
require 'io/nonblock'
|
||||||
|
rescue LoadError
|
||||||
|
end
|
||||||
|
|
||||||
class TestIONonblock < Test::Unit::TestCase
|
class TestIONonblock < Test::Unit::TestCase
|
||||||
def test_flush # [ruby-dev:24985]
|
def test_flush # [ruby-dev:24985]
|
||||||
|
@ -23,4 +26,4 @@ class TestIONonblock < Test::Unit::TestCase
|
||||||
t.join
|
t.join
|
||||||
assert_equal("b", result)
|
assert_equal("b", result)
|
||||||
end
|
end
|
||||||
end
|
end if IO.method_defined?(:nonblock)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue