mirror of
https://github.com/golang/go
synced 2024-11-05 14:46:11 -07:00
a58a8d2e97
The current command will run this entire set of tests, which takes a noticeable amount of time. Contributors may wish to run only a subset of these tests to save time/compute (e.g. when iterating on a CL that failed tests in that subset). Listing file(s) as operands to the command will run only those tests. Change-Id: I1874c43681a594190bc40b61cee0b8d321be73f8 Reviewed-on: https://go-review.googlesource.com/c/go/+/242997 Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
20 lines
696 B
Markdown
20 lines
696 B
Markdown
The test directory contains tests of the Go tool chain and runtime.
|
|
It includes black box tests, regression tests, and error output tests.
|
|
They are run as part of all.bash.
|
|
|
|
To run just these tests, execute:
|
|
|
|
../bin/go run run.go
|
|
|
|
To run just tests from specified files in this directory, execute:
|
|
|
|
../bin/go run run.go -- file1.go file2.go ...
|
|
|
|
Standard library tests should be written as regular Go tests in the appropriate package.
|
|
|
|
The tool chain and runtime also have regular Go tests in their packages.
|
|
The main reasons to add a new test to this directory are:
|
|
|
|
* it is most naturally expressed using the test runner; or
|
|
* it is also applicable to `gccgo` and other Go tool chains.
|