summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-07-12 12:35:58 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-11-06 13:30:32 +0900
commite9cc29bb5db2099ceea43f6bb66914acd9d20f87 (patch)
tree10cefe4d6ddc7723dff5a5505ceb843c56dc2cfc /spec/ruby
parentccbe0390fc62b468724d16d8e03e31bb8386dfdb (diff)
Pend some tests because these are not working with macOS 15 and Xcode 16
Diffstat (limited to 'spec/ruby')
-rw-r--r--spec/ruby/core/process/daemon_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/ruby/core/process/daemon_spec.rb b/spec/ruby/core/process/daemon_spec.rb
index 70ffd1b320..20b0d743b9 100644
--- a/spec/ruby/core/process/daemon_spec.rb
+++ b/spec/ruby/core/process/daemon_spec.rb
@@ -2,6 +2,9 @@ require_relative '../../spec_helper'
require_relative 'fixtures/common'
platform_is_not :windows do
+ # macOS 15 is not working this examples
+ return if /darwin/ =~ RUBY_PLATFORM && /15/ =~ `sw_vers -productVersion`
+
describe :process_daemon_keep_stdio_open_false, shared: true do
it "redirects stdout to /dev/null" do
@daemon.invoke("keep_stdio_open_false_stdout", @object).should == ""