]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go: remove mentions of 'gotest' from the documentation
authorRob Pike <r@golang.org>
Tue, 17 Jan 2012 21:13:50 +0000 (13:13 -0800)
committerRob Pike <r@golang.org>
Tue, 17 Jan 2012 21:13:50 +0000 (13:13 -0800)
go test runs the tests itself; it does not run the gotest command,
so these mentions are confusing.

R=golang-dev, n13m3y3r
CC=golang-dev
https://golang.org/cl/5551043

src/cmd/go/test.go

index 57e0469e061f62d3c43b7cce6f2c737540323491..fb222b139d2bd365c699dc3b9a04779cc430414b 100644 (file)
@@ -45,7 +45,7 @@ followed by detailed output for each failed package.
 the file pattern "*_test.go".  These additional files can contain test functions,
 benchmark functions, and example functions.  See 'go help testfunc' for more.
 
-By default, gotest needs no arguments.  It compiles and tests the package
+By default, go test needs no arguments.  It compiles and tests the package
 with source in the current directory, including tests, and runs the tests.
 If file names are given (with flag -file=test.go, one per extra test source file),
 only those test files are added to the package.  (The non-test files are always
@@ -82,7 +82,7 @@ The flags handled by 'go test' are:
            Compile and test up to n packages in parallel.
            The default value is the number of CPUs available.
 
-       -x  Print each subcommand gotest executes.
+       -x  Print each subcommand go test executes.
 
 The resulting test binary, called test.out, has its own flags: