1
0
mirror of https://github.com/golang/go synced 2024-09-30 20:28:32 -06:00

benchcmp: Fix invocation instructions.

`go test` takes -run and -bench; the -test.run and -test.bench flags
are only for the test binary itself.

LGTM=adg
R=adg
CC=golang-codereviews
https://golang.org/cl/113390043
This commit is contained in:
David Symonds 2014-07-22 17:50:39 +10:00
parent 562b65fda7
commit 105b764ad0

View File

@ -21,7 +21,7 @@ var (
const usageFooter = `
Each input file should be from:
go test -test.run=NONE -test.bench=. > [old,new].txt
go test -run=NONE -bench=. > [old,new].txt
Benchcmp compares old and new for each benchmark.