summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2024-07-12 12:35:58 +0900
committerHiroshi SHIBATA <[email protected]>2024-07-12 13:38:22 +0900
commit371055979f4e367e90d7af4140e92fd3824bce2a (patch)
treeb516fcf001b1b6196b6c0a14b281315a9096c0ee /spec/ruby
parentfa6bf1da576430c1db0ff1d68fb9b5992a1d71c8 (diff)
Pend some tests because these are not working with macOS 15 beta and Xcode 16 beta
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..36825771d1 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 beta 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 == ""