From 3dd6c0d30c16242b8f9b6a6a3936949efc3e8649 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 8 May 2018 00:00:13 +0000 Subject: [PATCH] Remove unreachable break git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 377a225450..13a7fb678a 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -567,7 +567,6 @@ class TestIO < Test::Unit::TestCase w2.nonblock = true rescue Errno::EBADF skip "nonblocking IO for pipe is not implemented" - break end s = w2.syswrite("a" * 100000) t = Thread.new { sleep 0.1; r2.read }