diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-11-06 15:45:26 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-12-15 17:38:38 +0900 |
| commit | d69dff1d7dea07f3f78848f651d3856212ebf178 (patch) | |
| tree | 5a6e7c3942ee8eb2c4b4175cf09a288f87335666 | |
| parent | 3563a0db80566b7c22ca77e620a9e89bb928dba2 (diff) | |
macOS 15 is the stable version today
| -rw-r--r-- | spec/ruby/core/process/daemon_spec.rb | 2 | ||||
| -rw-r--r-- | test/-ext-/bug_reporter/test_bug_reporter.rb | 2 | ||||
| -rw-r--r-- | test/ruby/test_rubyoptions.rb | 4 | ||||
| -rw-r--r-- | test/ruby/test_vm_dump.rb | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/spec/ruby/core/process/daemon_spec.rb b/spec/ruby/core/process/daemon_spec.rb index 36825771d1..20b0d743b9 100644 --- a/spec/ruby/core/process/daemon_spec.rb +++ b/spec/ruby/core/process/daemon_spec.rb @@ -2,7 +2,7 @@ require_relative '../../spec_helper' require_relative 'fixtures/common' platform_is_not :windows do - # macOS 15 beta is not working this examples + # 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 diff --git a/test/-ext-/bug_reporter/test_bug_reporter.rb b/test/-ext-/bug_reporter/test_bug_reporter.rb index bafe489d8a..74dd1d3766 100644 --- a/test/-ext-/bug_reporter/test_bug_reporter.rb +++ b/test/-ext-/bug_reporter/test_bug_reporter.rb @@ -5,7 +5,7 @@ require_relative '../../lib/jit_support' class TestBugReporter < Test::Unit::TestCase def test_bug_reporter_add - pend "macOS 15 beta is not working with this test" if /darwin/ =~ RUBY_PLATFORM && /15/ =~ `sw_vers -productVersion` + pend "macOS 15 is not working with this test" if macos?(15) omit "flaky with RJIT" if JITSupport.rjit_enabled? description = RUBY_DESCRIPTION diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index 29a7ed56ce..1202ce4b1c 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -852,7 +852,7 @@ class TestRubyOptions < Test::Unit::TestCase end def assert_segv(args, message=nil, list: SEGVTest::ExpectedStderrList, **opt) - pend "macOS 15 beta is not working with this assertion" if macos?(15) + pend "macOS 15 is not working with this assertion" if macos?(15) # We want YJIT to be enabled in the subprocess if it's enabled for us # so that the Ruby description matches. @@ -893,7 +893,7 @@ class TestRubyOptions < Test::Unit::TestCase end def assert_crash_report(path, cmd = nil) - pend "macOS 15 beta is not working with this assertion" if macos?(15) + pend "macOS 15 is not working with this assertion" if macos?(15) Dir.mktmpdir("ruby_crash_report") do |dir| list = SEGVTest::ExpectedStderrList diff --git a/test/ruby/test_vm_dump.rb b/test/ruby/test_vm_dump.rb index e0b98d7571..e64d704109 100644 --- a/test/ruby/test_vm_dump.rb +++ b/test/ruby/test_vm_dump.rb @@ -4,7 +4,7 @@ require 'test/unit' class TestVMDump < Test::Unit::TestCase def assert_darwin_vm_dump_works(args) omit if RUBY_PLATFORM !~ /darwin/ - pend "macOS 15 beta is not working with this assertion" if macos?(15) + pend "macOS 15 is not working with this assertion" if macos?(15) assert_in_out_err(args, "", [], /^\[IMPORTANT\]/) end |
