From f20c59b0295835a83a94a68e48646548691ea833 Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Fri, 22 May 2026 11:41:00 -0400 Subject: [PATCH] Make the output more verbose for self-tests. --- test/rakefile_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rakefile_helper.rb b/test/rakefile_helper.rb index 15bcf48..8a45f63 100644 --- a/test/rakefile_helper.rb +++ b/test/rakefile_helper.rb @@ -269,7 +269,7 @@ module RakefileHelpers total_runs = total_failures = total_errors = total_skips = 0 Dir['unit/*_test.rb'].sort.each do |tst| report "\nRunning #{tst.to_s}" - output = execute("ruby -I. #{tst}", true, false) + output = execute("ruby -I. #{tst} -v", true, false) output.each_line do |line| if line =~ /(\d+) runs, \d+ assertions, (\d+) failures, (\d+) errors, (\d+) skips/ total_runs += Regexp.last_match(1).to_i