]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go: fix test documentation
authorDmitriy Vyukov <dvyukov@google.com>
Wed, 11 Jan 2012 17:47:08 +0000 (09:47 -0800)
committerRobert Griesemer <gri@golang.org>
Wed, 11 Jan 2012 17:47:08 +0000 (09:47 -0800)
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5529067

src/cmd/go/test.go

index a0a33335cd13b7d005fdc300bb58d8eb7e2f45f4..c1ddb332fa85a07bc95187f1fc218ad9e3bfd623 100644 (file)
@@ -35,9 +35,9 @@ var cmdTest = &Command{
 'Go test' automates testing the packages named by the import paths.
 It prints a summary of the test results in the format:
 
-       test archive/tar
-       FAIL archive/zip
-       test compress/gzip
+       ok   archive/tar   0.011s
+       FAIL archive/zip   0.022s
+       ok   compress/gzip 0.033s
        ...
 
 followed by detailed output for each failed package.
@@ -60,7 +60,7 @@ and the test binary.
 
 See 'go help importpath' for more about import paths.
 
-See also: go build, go compile, go vet.
+See also: go build, go vet.
        `,
 }