summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-08 04:49:52 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-08 04:49:52 +0000
commitbe2c236ffff51cae13acf27d5e14dffe757b2625 (patch)
tree192585f2e98ab4d0419a28f63713f0fed834c7dd /test
parent3c8a03c3e52e9b0a60aafda4bf12ed0bec85ac9a (diff)
* test/ruby/test_io.rb (TestIO#test_dup): add open in block.
see [ruby-dev:35957]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19237 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 6b2dc3102d..35f575aa13 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -636,6 +636,10 @@ class TestIO < Test::Unit::TestCase
assert_equal("", f2.read)
end
+ proc do
+ open(__FILE__) # see Bug #493 [ruby-dev:35957]
+ end.call
+
pipe2 do |r, w|
assert_raise(Errno::EMFILE, Errno::ENFILE, Errno::ENOMEM) do
r2, w2 = r.dup, w.dup