Decrease the timeout in assert_darwin_vm_dump_works (#11412)

This commit is contained in:
Naoto Ono 2024-08-20 18:00:09 +09:00 committed by GitHub
parent f73d435262
commit 5e3dd6d395
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
Notes: git 2024-08-20 09:00:29 +00:00
Merged-By: ono-max <onoto1998@gmail.com>

View File

@ -7,7 +7,7 @@ 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 || 1800)
assert_in_out_err(args, "", [], /^\[IMPORTANT\]/, timeout: timeout || 300)
end
def test_darwin_invalid_call