From: Micah Stetson Date: Thu, 22 Jul 2010 00:07:26 +0000 (+1000) Subject: gotest: fix the glob pattern in the top-of-file comment X-Git-Tag: weekly.2010-07-29~52 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d1e7cffe6c86996ab60d6cf9dc8f7ec1a7b47112;p=gostls13.git gotest: fix the glob pattern in the top-of-file comment R=golang-dev, adg CC=golang-dev https://golang.org/cl/1847042 --- diff --git a/src/cmd/gotest/gotest b/src/cmd/gotest/gotest index fec2b4a4a4..b9bd93fac0 100755 --- a/src/cmd/gotest/gotest +++ b/src/cmd/gotest/gotest @@ -3,10 +3,10 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -# Using all the test*.go files in the current directory, write out a file +# Using all the *_test.go files in the current directory, write out a file # _testmain.go that runs all its tests. Compile everything and run the # tests. -# If files are named on the command line, use them instead of test*.go. +# If files are named on the command line, use them instead of *_test.go. # Makes egrep,grep work better in general if we put them # in ordinary C mode instead of what the current language is.