From 3830bca5edd6964131971866c80107c89fac5362 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Wed, 25 Sep 2024 17:36:03 +0900 Subject: TestProcess#test_daemon_noclose is only working with macOS 15.1 beta, we should skip with macOS 15.0 --- test/ruby/test_process.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 6e8ba484a4..e055cb9db8 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1874,6 +1874,8 @@ class TestProcess < Test::Unit::TestCase end def test_daemon_noclose + pend "macOS 15.0 is not working with this test" if macos?(15, 0) + data = IO.popen("-", "r+") do |f| break f.read if f Process.daemon(false, true) -- cgit v1.2.3