Make.pkg, doc: Replace references to "-benchmarks" and "-match" with "-test.bench" and "-test.run".

R=r
CC=golang-dev
https://golang.org/cl/4197041
This commit is contained in:
Kyle Consalus 2011-02-22 20:23:21 -08:00 committed by Rob Pike
parent 8e4e11506b
commit 07cc8b9ad2
6 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@
//
// Functions of the form
// func BenchmarkXxx(*testing.B)
// are considered benchmarks, and are executed by gotest when the -benchmarks
// are considered benchmarks, and are executed by gotest when the -test.bench
// flag is provided.
//
// A sample benchmark function looks like this: