testing.common.chatty (field)

25 uses

	testing (current package)
		benchmark.go#L246: 		if b.chatty != nil && (len(b.output) > 0 || b.finished) {
		benchmark.go#L548: 		main.chatty = newChattyPrinter(main.w)
		benchmark.go#L562: 			if b.chatty == nil {
		benchmark.go#L572: 						chatty: b.chatty,
		benchmark.go#L589: 			if b.chatty != nil {
		benchmark.go#L638: 			chatty:  b.chatty,
		benchmark.go#L652: 	if b.chatty != nil {
		testing.go#L399: 	chatty     *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.
		testing.go#L582: 	if c.chatty != nil && p.w == c.chatty.w {
		testing.go#L592: 		c.chatty.Updatef(testName, format, args...)
		testing.go#L766: 		if c.chatty != nil {
		testing.go#L772: 				c.chatty.Printf(c.name, "%s", c.decorate(s, depth+1))
		testing.go#L1048: 	if t.chatty != nil {
		testing.go#L1055: 		t.chatty.Updatef(t.name, "=== PAUSE %s\n", t.name)
		testing.go#L1062: 	if t.chatty != nil {
		testing.go#L1063: 		t.chatty.Updatef(t.name, "=== CONT  %s\n", t.name)
		testing.go#L1224: 			chatty:  t.chatty,
		testing.go#L1230: 	if t.chatty != nil {
		testing.go#L1231: 		t.chatty.Updatef(t.name, "=== RUN   %s\n", t.name)
		testing.go#L1442: 	} else if t.chatty != nil {
		testing.go#L1507: 				t.chatty = newChattyPrinter(t.w)