aboutsummaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/testing.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testing/testing.go b/src/testing/testing.go
index 8b7742d85e..add2284edb 100644
--- a/src/testing/testing.go
+++ b/src/testing/testing.go
@@ -2733,6 +2733,10 @@ func runTests(modulePath, importPath string, matchString func(pat, str string) (
}
if Verbose() {
t.chatty = newChattyPrinter(t.w)
+
+ if *count > 1 {
+ fmt.Fprintf(t.w, "### %d/%d\n", i+1, *count)
+ }
}
tRunner(t, func(t *T) {
for _, test := range tests {