summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaoto Ono <[email protected]>2024-08-14 11:32:52 +0900
committerYusuke Endoh <[email protected]>2024-08-14 12:24:15 +0900
commite7046f1f57bef81666bec5ac262845fd5dbf10bc (patch)
tree067db9db4af3eefd30cb2a8c5cb31515254dbee9
parent983d91cf1b44d9640accef9c314154c7fb1d289b (diff)
Increase the default timeout in assert_darwin_vm_dump_works
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/11373
-rw-r--r--test/ruby/test_vm_dump.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_vm_dump.rb b/test/ruby/test_vm_dump.rb
index 12dfe75e9d..7c31821d52 100644
--- a/test/ruby/test_vm_dump.rb
+++ b/test/ruby/test_vm_dump.rb
@@ -7,11 +7,11 @@ 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 /darwin/ =~ RUBY_PLATFORM && /15/ =~ `sw_vers -productVersion`
- assert_in_out_err(args, "", [], /^\[IMPORTANT\]/, timeout: timeout || 60)
+ assert_in_out_err(args, "", [], /^\[IMPORTANT\]/, timeout: timeout || 1800)
end
def test_darwin_invalid_call
- assert_darwin_vm_dump_works(['-r-test-/fatal', '-eBug.invalid_call(1)'], 180)
+ assert_darwin_vm_dump_works(['-r-test-/fatal', '-eBug.invalid_call(1)'])
end
def test_darwin_segv_in_syscall