mirror of
https://github.com/golang/go
synced 2024-11-24 22:10:02 -07:00
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:
parent
8e4e11506b
commit
07cc8b9ad2
@ -229,7 +229,7 @@ run <code>gotest one_test.go</code>.
|
|||||||
<p>
|
<p>
|
||||||
If your change affects performance, add a <code>Benchmark</code> function
|
If your change affects performance, add a <code>Benchmark</code> function
|
||||||
(see the <a href="/cmd/gotest/">gotest command documentation</a>)
|
(see the <a href="/cmd/gotest/">gotest command documentation</a>)
|
||||||
and run it using <code>gotest -benchmarks=.</code>.
|
and run it using <code>gotest -test.bench=.</code>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -55,7 +55,7 @@ test:
|
|||||||
gotest
|
gotest
|
||||||
|
|
||||||
bench:
|
bench:
|
||||||
gotest -benchmarks=. -match="Do not run tests"
|
gotest -test.bench=. -test.run="Do not run tests"
|
||||||
|
|
||||||
nuke: clean
|
nuke: clean
|
||||||
rm -f $(pkgdir)/$(TARG).a
|
rm -f $(pkgdir)/$(TARG).a
|
||||||
|
@ -20,7 +20,7 @@ They should have signature
|
|||||||
func TestXXX(t *testing.T) { ... }
|
func TestXXX(t *testing.T) { ... }
|
||||||
|
|
||||||
Benchmark functions can be written as well; they will be run only
|
Benchmark functions can be written as well; they will be run only
|
||||||
when the -benchmarks flag is provided. Benchmarks should have
|
when the -test.bench flag is provided. Benchmarks should have
|
||||||
signature
|
signature
|
||||||
|
|
||||||
func BenchmarkXXX(b *testing.B) { ... }
|
func BenchmarkXXX(b *testing.B) { ... }
|
||||||
|
@ -61,7 +61,7 @@ func TestRunClient(t *testing.T) {
|
|||||||
|
|
||||||
// Script of interaction with gnutls implementation.
|
// Script of interaction with gnutls implementation.
|
||||||
// The values for this test are obtained by building and running in client mode:
|
// The values for this test are obtained by building and running in client mode:
|
||||||
// % gotest -match "TestRunClient" -connect
|
// % gotest -test.run "TestRunClient" -connect
|
||||||
// and then:
|
// and then:
|
||||||
// % gnutls-serv -p 10443 --debug 100 --x509keyfile key.pem --x509certfile cert.pem -a > /tmp/log 2>&1
|
// % gnutls-serv -p 10443 --debug 100 --x509keyfile key.pem --x509certfile cert.pem -a > /tmp/log 2>&1
|
||||||
// % python parse-gnutls-cli-debug-log.py < /tmp/log
|
// % python parse-gnutls-cli-debug-log.py < /tmp/log
|
||||||
|
@ -194,7 +194,7 @@ var testPrivateKey = &rsa.PrivateKey{
|
|||||||
|
|
||||||
// Script of interaction with gnutls implementation.
|
// Script of interaction with gnutls implementation.
|
||||||
// The values for this test are obtained by building and running in server mode:
|
// The values for this test are obtained by building and running in server mode:
|
||||||
// % gotest -match "TestRunServer" -serve
|
// % gotest -test.run "TestRunServer" -serve
|
||||||
// and then:
|
// and then:
|
||||||
// % gnutls-cli --insecure --debug 100 -p 10443 localhost > /tmp/log 2>&1
|
// % gnutls-cli --insecure --debug 100 -p 10443 localhost > /tmp/log 2>&1
|
||||||
// % python parse-gnutls-cli-debug-log.py < /tmp/log
|
// % python parse-gnutls-cli-debug-log.py < /tmp/log
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
//
|
//
|
||||||
// Functions of the form
|
// Functions of the form
|
||||||
// func BenchmarkXxx(*testing.B)
|
// 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.
|
// flag is provided.
|
||||||
//
|
//
|
||||||
// A sample benchmark function looks like this:
|
// A sample benchmark function looks like this:
|
||||||
|
Loading…
Reference in New Issue
Block a user