diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-09-25 17:36:03 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-09-25 17:36:03 +0900 |
commit | 3830bca5edd6964131971866c80107c89fac5362 (patch) | |
tree | 34cd9cb2395ad4c8aaab839c8615e91306777f8b | |
parent | 76543a34ab8af125f7a04fa487afacf8f27f4a2b (diff) |
TestProcess#test_daemon_noclose is only working with macOS 15.1 beta, we should skip with macOS 15.0
-rw-r--r-- | test/ruby/test_process.rb | 2 |
1 files changed, 2 insertions, 0 deletions
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) |