summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-29 06:22:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-29 06:22:42 +0000
commit82ee5772e71daef31e2675d49c4a374415c2d4eb (patch)
tree8d40c552b8597fb67384cff55dbb4ef4c0c73920
parentc36d3ee9a9a3cb252dea1e2de475ff224f3ad7f6 (diff)
downloadruby-82ee5772e71daef31e2675d49c4a374415c2d4eb.tar.gz
ruby-82ee5772e71daef31e2675d49c4a374415c2d4eb.tar.xz
ruby-82ee5772e71daef31e2675d49c4a374415c2d4eb.zip
* test/io/nonblock/test_flush.rb: abandon tests when io/nonblock is
not supported. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--test/io/nonblock/test_flush.rb7
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b4ea439f4..4e523fdbc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
* io.c (fptr_finalize): must not use FILE after fclose().
@@ -107,7 +112,7 @@ Sat Nov 27 17:21:30 2004 Kouhei Sutou <kou@cozmixng.org>
* sample/rss/rss_recent.rb: ditto.
-Sat Nov 27 14:44:15 2004 Kent Sibilev <ksibilev@bellsouth.net>
+Sat Nov 27 14:44:15 2004 Kent Sibilev <ksibilev@bellsouth.net>
* lib/cgi/session.rb (CGI::Session::initialize): [ruby-core:03832]
diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb
index dbe20722c..4f56d0082 100644
--- a/test/io/nonblock/test_flush.rb
+++ b/test/io/nonblock/test_flush.rb
@@ -1,5 +1,8 @@
require 'test/unit'
-require 'io/nonblock'
+begin
+ require 'io/nonblock'
+rescue LoadError
+end
class TestIONonblock < Test::Unit::TestCase
def test_flush # [ruby-dev:24985]
@@ -23,4 +26,4 @@ class TestIONonblock < Test::Unit::TestCase
t.join
assert_equal("b", result)
end
-end
+end if IO.method_defined?(:nonblock)