From f4ed799b35d34154598205da4bb2ff068a15eba7 Mon Sep 17 00:00:00 2001 From: normal Date: Fri, 5 Sep 2014 23:11:15 +0000 Subject: test/ruby/test_io.rb: use IO#nonblock= * test/ruby/test_io.rb (test_readpartial_locktmp): use IO#nonblock= Old fcntl invocation may drop necessary flags on some platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 0afcbbac0c..c3544b930a 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -2867,7 +2867,7 @@ End th = nil with_pipe do |r,w| begin - r.fcntl(Fcntl::F_SETFL, Fcntl::O_NONBLOCK) + r.nonblock = true th = Thread.new {r.readpartial(100, buf)} Thread.pass until th.stop? -- cgit v1.2.3