From d4fd2fb0a3fe6bafedb2d28e6d42b052044e9704 Mon Sep 17 00:00:00 2001 From: normal Date: Thu, 22 Oct 2015 22:25:19 +0000 Subject: test/io/wait/test_io_wait.rb (test_wait_eof): test return value I wrote some code which relies on this nowadays, but Ruby <=2.2 and earlier behaved differently... git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/io/wait/test_io_wait.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/io/wait') diff --git a/test/io/wait/test_io_wait.rb b/test/io/wait/test_io_wait.rb index 48f6cf5c20..bef4731ae5 100644 --- a/test/io/wait/test_io_wait.rb +++ b/test/io/wait/test_io_wait.rb @@ -70,9 +70,11 @@ class TestIOWait < Test::Unit::TestCase def test_wait_eof th = Thread.new { sleep 0.01; @w.close } + ret = nil assert_nothing_raised(Timeout::Error) do - Timeout.timeout(0.1) {@r.wait} + Timeout.timeout(0.1) { ret = @r.wait } end + assert_equal @r, ret ensure th.join end -- cgit v1.2.3