mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #12901 from hqhq/hq_fix_test_comment
fix comments for test certain tests
This commit is contained in:
commit
7e7b6a20bd
2 changed files with 8 additions and 3 deletions
|
@ -164,11 +164,11 @@ You can use the `TESTFLAGS` environment variable to run a single test. The
|
||||||
flag's value is passed as arguments to the `go test` command. For example, from
|
flag's value is passed as arguments to the `go test` command. For example, from
|
||||||
your local host you can run the `TestBuild` test with this command:
|
your local host you can run the `TestBuild` test with this command:
|
||||||
|
|
||||||
$ TESTFLAGS='-check.f DockerSuite.TestBuild*' make test
|
$ TESTFLAGS='-check.f DockerSuite.TestBuild*' make test-integration-cli
|
||||||
|
|
||||||
To run the same test inside your Docker development container, you do this:
|
To run the same test inside your Docker development container, you do this:
|
||||||
|
|
||||||
root@5f8630b873fe:/go/src/github.com/docker/docker# TESTFLAGS='-check.f TestBuild*' hack/make.sh
|
root@5f8630b873fe:/go/src/github.com/docker/docker# TESTFLAGS='-check.f TestBuild*' hack/make.sh binary test-integration-cli
|
||||||
|
|
||||||
## If tests under Boot2Docker fail due to disk space errors
|
## If tests under Boot2Docker fail due to disk space errors
|
||||||
|
|
||||||
|
|
|
@ -167,7 +167,12 @@ fi
|
||||||
# If $TESTFLAGS is set in the environment, it is passed as extra arguments to 'go test'.
|
# If $TESTFLAGS is set in the environment, it is passed as extra arguments to 'go test'.
|
||||||
# You can use this to select certain tests to run, eg.
|
# You can use this to select certain tests to run, eg.
|
||||||
#
|
#
|
||||||
# TESTFLAGS='-run ^TestBuild$' ./hack/make.sh test
|
# TESTFLAGS='-test.run ^TestBuild$' ./hack/make.sh test-unit
|
||||||
|
#
|
||||||
|
# For integration-cli test, we use [gocheck](https://labix.org/gocheck), if you want
|
||||||
|
# to run certain tests on your local host, you should run with command:
|
||||||
|
#
|
||||||
|
# TESTFLAGS='-check.f DockerSuite.TestBuild*' ./hack/make.sh binary test-integration-cli
|
||||||
#
|
#
|
||||||
go_test_dir() {
|
go_test_dir() {
|
||||||
dir=$1
|
dir=$1
|
||||||
|
|
Loading…
Reference in a new issue