diff options
| author | Peter Zhu <peter@peterzhu.ca> | 2023-06-28 11:35:23 -0400 |
|---|---|---|
| committer | Peter Zhu <peter@peterzhu.ca> | 2023-06-28 13:47:48 -0400 |
| commit | 27d3fa2af05cf6540ddb05bd65d5b12321737074 (patch) | |
| tree | c37e5c71e0a101a22f15063b31bab8995239633a | |
| parent | 78ecb93f9de8d5e134bd9482780080bd72099fed (diff) | |
Increase memory leak test timeout
The test times out on some platforms, so increase the timeout.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7992
| -rw-r--r-- | test/ripper/test_ripper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ripper/test_ripper.rb b/test/ripper/test_ripper.rb index a3fa050998..c6775c5c93 100644 --- a/test/ripper/test_ripper.rb +++ b/test/ripper/test_ripper.rb @@ -143,7 +143,7 @@ end def test_no_memory_leak assert_no_memory_leak(%w(-rripper), "", "#{<<~'end;'}", rss: true) - 10_000_000.times do + 2_000_000.times do Ripper.parse("") end end; |
