summaryrefslogtreecommitdiff
path: root/test/io/wait
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-12-13 09:38:18 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-12-13 09:40:54 -0800
commitcc86fa8416b571e2d833157b852dee31a0d2f731 (patch)
treef68aa0c0a6a4c58cb812c7d3e395c5e14370148b /test/io/wait
parent0f1c7e3bcb2ee0cb38d228ba0d23f52ceef5623c (diff)
Skip an unstable test on MinGW
This test fails fairly frequently on MinGW: https://github.com/ruby/ruby/actions/runs/7195712496/job/19598924253#step:11:168 https://github.com/ruby/ruby/actions/runs/7191246799/job/19585627182#step:11:168 and we aren't actively working on stabilizing tests for MinGW.
Diffstat (limited to 'test/io/wait')
-rw-r--r--test/io/wait/test_io_wait.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/io/wait/test_io_wait.rb b/test/io/wait/test_io_wait.rb
index 7997a4814f..cbc01f9622 100644
--- a/test/io/wait/test_io_wait.rb
+++ b/test/io/wait/test_io_wait.rb
@@ -36,6 +36,7 @@ class TestIOWait < Test::Unit::TestCase
end
def test_ready?
+ omit 'unstable on MinGW' if /mingw/ =~ RUBY_PLATFORM
assert_not_predicate @r, :ready?, "shouldn't ready, but ready"
@w.syswrite "."
sleep 0.1