Signed-off-by: Daniel Nephin <dnephin@docker.com>
| ... | ... |
@@ -318,7 +318,7 @@ Function Run-UnitTests() {
|
| 318 | 318 |
$pkgList = $pkgList | Select-String -Pattern "github.com/docker/docker" |
| 319 | 319 |
$pkgList = $pkgList | Select-String -NotMatch "github.com/docker/docker/vendor" |
| 320 | 320 |
$pkgList = $pkgList | Select-String -NotMatch "github.com/docker/docker/man" |
| 321 |
- $pkgList = $pkgList | Select-String -NotMatch "github.com/docker/docker/integration-cli" |
|
| 321 |
+ $pkgList = $pkgList | Select-String -NotMatch "github.com/docker/docker/integration" |
|
| 322 | 322 |
$pkgList = $pkgList -replace "`r`n", " " |
| 323 | 323 |
$goTestCommand = "go test" + $raceParm + " -cover -ldflags -w -tags """ + "autogen daemon" + """ -a """ + "-test.timeout=10m" + """ $pkgList" |
| 324 | 324 |
Invoke-Expression $goTestCommand |
| ... | ... |
@@ -16,7 +16,7 @@ TESTFLAGS+=" -test.timeout=${TIMEOUT:-5m}"
|
| 16 | 16 |
BUILDFLAGS=( -tags "netgo seccomp libdm_no_deferred_remove" ) |
| 17 | 17 |
TESTDIRS="${TESTDIRS:-"./..."}"
|
| 18 | 18 |
|
| 19 |
-exclude_paths="/vendor/|/integration-cli" |
|
| 19 |
+exclude_paths="/vendor/|/integration" |
|
| 20 | 20 |
if [ "$(go env GOHOSTOS)" = 'solaris' ]; then |
| 21 | 21 |
exclude_paths="$exclude_paths|/daemon/graphdriver" |
| 22 | 22 |
fi |