summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-11-06 15:45:26 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-11-06 15:45:32 +0900
commita2dd471d9e00868c31fcb94901c11a3cc67a6920 (patch)
tree641440c0136ec2b68d26379953e28991c629142c /test/ruby
parentd71be7274bd2623bb521be72c245c08fc38d6ae4 (diff)
macOS 15 is the stable version today
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_rubyoptions.rb4
-rw-r--r--test/ruby/test_vm_dump.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 0a3d2990fc..89ebe8f21d 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -876,7 +876,7 @@ class TestRubyOptions < Test::Unit::TestCase
end
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
# so that the Ruby description matches.
@@ -921,7 +921,7 @@ class TestRubyOptions < Test::Unit::TestCase
end
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|
list = SEGVTest::ExpectedStderrList
diff --git a/test/ruby/test_vm_dump.rb b/test/ruby/test_vm_dump.rb
index 22afee7a24..709fd5eadf 100644
--- a/test/ruby/test_vm_dump.rb
+++ b/test/ruby/test_vm_dump.rb
@@ -5,7 +5,7 @@ return unless /darwin/ =~ RUBY_PLATFORM
class TestVMDump < Test::Unit::TestCase
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)
end