aboutsummaryrefslogtreecommitdiffstats
path: root/test/io/wait
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-09 08:51:22 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-09 08:51:22 +0000
commit15d7adf90e5c5546ba18bdae8f607b369b0c8ba0 (patch)
treedea525c7a08a2925f8921ee0cbafbb7e36a4746d /test/io/wait
parenta21b9622f6acc1cd9984ad9deb434054ee219ed9 (diff)
downloadruby-15d7adf90e5c5546ba18bdae8f607b369b0c8ba0.tar.gz
test/io/wait/test_io_wait_uncommon.rb (test_tty_wait): increase timeout
Apparently my tty can't keep up when I run test-all with TESTS='-v --no-retry' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/io/wait')
-rw-r--r--test/io/wait/test_io_wait_uncommon.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/wait/test_io_wait_uncommon.rb b/test/io/wait/test_io_wait_uncommon.rb
index 03041fcaf1..d76be914a5 100644
--- a/test/io/wait/test_io_wait_uncommon.rb
+++ b/test/io/wait/test_io_wait_uncommon.rb
@@ -12,7 +12,7 @@ class TestIOWaitUncommon < Test::Unit::TestCase
skip "/dev/tty: #{e.message} (#{e.class})"
end
assert_include [ nil, tty ], tty.wait_readable(0)
- assert_equal tty, tty.wait_writable(0), 'portability test'
+ assert_equal tty, tty.wait_writable(1), 'portability test'
ensure
tty&.close
end