mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add TESTDIRS back
Makes it simpler to test only one package. Was removed by #17491. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
parent
6563b7d2e8
commit
4a54ab387f
1 changed files with 8 additions and 3 deletions
|
@ -9,11 +9,16 @@ set -e
|
|||
#
|
||||
bundle_test_unit() {
|
||||
date
|
||||
if [ -z "$TESTDIRS" ]; then
|
||||
TEST_PATH=./...
|
||||
else
|
||||
TEST_PATH=./${TESTDIRS}
|
||||
fi
|
||||
pkg_list=$(go list -e \
|
||||
-f '{{if ne .Name "github.com/docker/docker"}}
|
||||
{{.ImportPath}}
|
||||
{{end}}' \
|
||||
"${BUILDFLAGS[@]}" ./... \
|
||||
{{.ImportPath}}
|
||||
{{end}}' \
|
||||
"${BUILDFLAGS[@]}" $TEST_PATH \
|
||||
| grep -v github.com/docker/docker/vendor \
|
||||
| grep -v github.com/docker/docker/integration-cli)
|
||||
go test -cover $GCCGOFLAGS -ldflags "$LDFLAGS" "${BUILDFLAGS[@]}" $TESTFLAGS $pkg_list
|
||||
|
|
Loading…
Reference in a new issue