macOS 15 is the stable version today

This commit is contained in:
Hiroshi SHIBATA 2024-11-06 15:45:26 +09:00
parent d71be7274b
commit a2dd471d9e
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ require_relative '../../spec_helper'
require_relative 'fixtures/common' require_relative 'fixtures/common'
platform_is_not :windows do 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` return if /darwin/ =~ RUBY_PLATFORM && /15/ =~ `sw_vers -productVersion`
describe :process_daemon_keep_stdio_open_false, shared: true do describe :process_daemon_keep_stdio_open_false, shared: true do

View File

@ -6,7 +6,7 @@ require_relative '../../lib/parser_support'
class TestBugReporter < Test::Unit::TestCase class TestBugReporter < Test::Unit::TestCase
def test_bug_reporter_add def test_bug_reporter_add
pend "macOS 15 beta is not working with this test" if macos?(15) pend "macOS 15 is not working with this test" if macos?(15)
omit "flaky with RJIT" if JITSupport.rjit_enabled? omit "flaky with RJIT" if JITSupport.rjit_enabled?
description = RUBY_DESCRIPTION description = RUBY_DESCRIPTION

View File

@ -876,7 +876,7 @@ class TestRubyOptions < Test::Unit::TestCase
end end
def assert_segv(args, message=nil, list: SEGVTest::ExpectedStderrList, **opt, &block) def assert_segv(args, message=nil, list: SEGVTest::ExpectedStderrList, **opt, &block)
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 # We want YJIT to be enabled in the subprocess if it's enabled for us
# so that the Ruby description matches. # so that the Ruby description matches.
@ -921,7 +921,7 @@ class TestRubyOptions < Test::Unit::TestCase
end end
def assert_crash_report(path, cmd = nil, &block) def assert_crash_report(path, cmd = nil, &block)
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| Dir.mktmpdir("ruby_crash_report") do |dir|
list = SEGVTest::ExpectedStderrList list = SEGVTest::ExpectedStderrList

View File

@ -5,7 +5,7 @@ return unless /darwin/ =~ RUBY_PLATFORM
class TestVMDump < Test::Unit::TestCase class TestVMDump < Test::Unit::TestCase
def assert_darwin_vm_dump_works(args, timeout=nil) def assert_darwin_vm_dump_works(args, timeout=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)
assert_in_out_err(args, "", [], /^\[IMPORTANT\]/, timeout: timeout || 300) assert_in_out_err(args, "", [], /^\[IMPORTANT\]/, timeout: timeout || 300)
end end