diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-08-19 20:16:09 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-08-19 20:16:09 +0000 |
commit | d167aae2c7c0222c1f6c51d9d0253c69905dbea0 (patch) | |
tree | 456c9adb278f445db8a5f031a5deac450a45791d /test/ruby/test_io.rb | |
parent | 9ab04897bd06767f773b35c6958a0551981093aa (diff) | |
download | ruby-d167aae2c7c0222c1f6c51d9d0253c69905dbea0.tar.gz |
test/ruby/test_io.rb (test_select_leak): quiet unused variable warning
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r-- | test/ruby/test_io.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index cf8c9651b8..0eb09f9044 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -3829,7 +3829,7 @@ __END__ th = Thread.new do begin IO.select(rset, wset) - rescue => e + rescue retry end while true end |