summaryrefslogtreecommitdiff
path: root/tool/test
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-17 22:34:23 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-17 22:40:31 +0900
commitc7eac1be518912bde3e2f22623b1398eb1b950f2 (patch)
tree1bd6c69fa6cec70785d0689df0a6cd60c8d2d12f /tool/test
parent13716898df666210b9067c8a3d05a162c2a6ed66 (diff)
downloadruby-c7eac1be518912bde3e2f22623b1398eb1b950f2.tar.gz
Retry hung up tests verbosely
Diffstat (limited to 'tool/test')
-rw-r--r--tool/test/testunit/test_parallel.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/test/testunit/test_parallel.rb b/tool/test/testunit/test_parallel.rb
index c1caa3c691..56ebb7df90 100644
--- a/tool/test/testunit/test_parallel.rb
+++ b/tool/test/testunit/test_parallel.rb
@@ -212,7 +212,7 @@ module TestParallel
def test_hungup
spawn_runner "--worker-timeout=1", "test4test_hungup.rb"
buf = Timeout.timeout(TIMEOUT) {@test_out.read}
- assert_match(/^Retrying\.+$/, buf)
+ assert_match(/^Retrying hung up testcases\.+$/, buf)
assert_match(/^2 tests,.* 0 failures,/, buf)
end
end