diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-07-12 12:35:58 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-11-06 13:30:32 +0900 |
| commit | e9cc29bb5db2099ceea43f6bb66914acd9d20f87 (patch) | |
| tree | 10cefe4d6ddc7723dff5a5505ceb843c56dc2cfc /test/ruby | |
| parent | ccbe0390fc62b468724d16d8e03e31bb8386dfdb (diff) | |
Pend some tests because these are not working with macOS 15 and Xcode 16
Diffstat (limited to 'test/ruby')
| -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 a6de1c8e6d..30427aeec1 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1838,6 +1838,8 @@ class TestProcess < Test::Unit::TestCase end def test_daemon_noclose + pend "macOS 15 beta is not working with this test" if /darwin/ =~ RUBY_PLATFORM && /15/ =~ `sw_vers -productVersion` + data = IO.popen("-", "r+") do |f| break f.read if f Process.daemon(false, true) |
