From: Brad Fitzpatrick Date: Tue, 21 Jul 2015 19:47:22 +0000 (-0700) Subject: cmd/dist: remove prints during test registration X-Git-Tag: go1.5beta3~129 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fc7f6d307a7e220506ad2798cd0610962208d26e;p=gostls13.git cmd/dist: remove prints during test registration dist test should not print (especially to stdout) during test registration. This confuses other tools interacting with dist using dist test --list, etc. Change-Id: Ie4f82c13e49590c23a7a235d90ddbc4f5ed81e0b Reviewed-on: https://go-review.googlesource.com/12487 Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 8701d34709..3a2da0e9fb 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -420,9 +420,9 @@ func (t *tester) registerTests() { }) switch t.goos { case "darwin": - fmt.Println("Skipping misc/cgo/testsovar test. See issue 10360 for details.") + // Skipping misc/cgo/testsovar test. See issue 10360 for details. case "netbsd": - fmt.Println("Skipping misc/cgo/testsovar test. See issue 11654 for details.") + // Skipping misc/cgo/testsovar test. See issue 11654 for details. default: t.tests = append(t.tests, distTest{ name: "testsovar",