2017-07-24 11:17:15 -06:00
|
|
|
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:
|
|
|
|
|
2023-05-09 07:50:19 -06:00
|
|
|
../bin/go test cmd/internal/testdir
|
2017-07-24 11:17:15 -06:00
|
|
|
|
2020-07-16 05:33:25 -06:00
|
|
|
To run just tests from specified files in this directory, execute:
|
|
|
|
|
2023-05-09 07:50:19 -06:00
|
|
|
../bin/go test cmd/internal/testdir -run='Test/(file1.go|file2.go|...)'
|
2020-07-16 05:33:25 -06:00
|
|
|
|
2017-07-24 11:17:15 -06:00
|
|
|
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.
|