diff options
author | Naoto Ono <[email protected]> | 2024-08-20 18:00:09 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-20 09:00:09 +0000 |
commit | 5e3dd6d395ca551152c8920f69f39823efeab748 (patch) | |
tree | 6e9c92655b52c902310931ab1ca7642d16dab14d | |
parent | f73d435262ebbbdaedfb7bdc73b093c4fd6505f4 (diff) |
Decrease the timeout in assert_darwin_vm_dump_works (#11412)
Notes
Notes:
Merged-By: ono-max <[email protected]>
-rw-r--r-- | test/ruby/test_vm_dump.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_vm_dump.rb b/test/ruby/test_vm_dump.rb index 7c31821d52..86d89adb96 100644 --- a/test/ruby/test_vm_dump.rb +++ b/test/ruby/test_vm_dump.rb @@ -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 |