summaryrefslogtreecommitdiff
path: root/test/socket
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2025-08-15 09:56:08 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2025-08-15 10:53:58 -0700
commit12ef01b52f69dfdad2941e1b79c826b74ae0ed24 (patch)
tree88be031cff1165ac25b98df6e16bbc0d03d9955b /test/socket
parent9deaf68c1a6bd45b2104b028d868d80c9a69105e (diff)
Skip an unstable test for macOS
https://github.com/ruby/ruby/actions/runs/16983250181/job/48147338735 https://github.com/ruby/ruby/actions/runs/16994020689/job/48180211762
Diffstat (limited to 'test/socket')
-rw-r--r--test/socket/test_unix.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/socket/test_unix.rb b/test/socket/test_unix.rb
index 3e7d85befc..0d284b2926 100644
--- a/test/socket/test_unix.rb
+++ b/test/socket/test_unix.rb
@@ -146,6 +146,7 @@ class TestSocket_UNIXSocket < Test::Unit::TestCase
end
def test_fd_passing_race_condition
+ omit 'randomly crashes on macOS' if RUBY_PLATFORM =~ /darwin/
r1, w = IO.pipe
s1, s2 = UNIXSocket.pair
s1.nonblock = s2.nonblock = true