diff --git a/pipe_test.go b/pipe_test.go index 2dfc373..2722385 100644 --- a/pipe_test.go +++ b/pipe_test.go @@ -644,6 +644,8 @@ func TestListenConnectRace(t *testing.T) { s.Close() } wg.Wait() + + t.Logf("iteration %d", i) } } @@ -684,5 +686,7 @@ func TestCloseRace(t *testing.T) { } _ = c.Close() _ = l.Close() + + t.Logf("iteration %d", i) } }