diff options
author | Yuta Saito <[email protected]> | 2024-10-10 13:01:33 +0900 |
---|---|---|
committer | Yuta Saito <[email protected]> | 2024-10-10 13:40:59 +0900 |
commit | 63f94e12fb371fdba41a8233e56f752a1a579c5e (patch) | |
tree | 1760191315918d6f58beb5a9499955bc4b2df06d /test/ruby | |
parent | c77f0b91342935f661c6e5ba0f6f5c19427da174 (diff) |
Revert "TestProcess#test_daemon_noclose is only working with macOS 15.1 beta, we should skip with macOS 15.0"
This reverts commit 3830bca5edd6964131971866c80107c89fac5362.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11849
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_process.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index e055cb9db8..6e8ba484a4 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1874,8 +1874,6 @@ 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) |