|
@@ -107,13 +107,13 @@ Try this now.
|
|
|
`dry-run-test` image.
|
|
|
|
|
|
```bash
|
|
|
- $ docker run --privileged --rm -ti -v `pwd`:/go/src/github.com/moby/moby dry-run-test /bin/bash
|
|
|
+ $ docker run --privileged --rm -ti -v `pwd`:/go/src/github.com/docker/docker dry-run-test /bin/bash
|
|
|
```
|
|
|
|
|
|
3. Run the tests using the `hack/make.sh` script.
|
|
|
|
|
|
```bash
|
|
|
- root@5f8630b873fe:/go/src/github.com/moby/moby# hack/make.sh dynbinary binary cross test-unit test-integration test-docker-py
|
|
|
+ root@5f8630b873fe:/go/src/github.com/docker/docker# hack/make.sh dynbinary binary cross test-unit test-integration test-docker-py
|
|
|
```
|
|
|
|
|
|
The tests run just as they did within your local host.
|
|
@@ -122,7 +122,7 @@ Try this now.
|
|
|
just the unit tests:
|
|
|
|
|
|
```bash
|
|
|
- root@5f8630b873fe:/go/src/github.com/moby/moby# hack/make.sh dynbinary binary cross test-unit
|
|
|
+ root@5f8630b873fe:/go/src/github.com/docker/docker# hack/make.sh dynbinary binary cross test-unit
|
|
|
```
|
|
|
|
|
|
Most test targets require that you build these precursor targets first:
|
|
@@ -170,7 +170,7 @@ $ TESTFLAGS='-check.f DockerSuite.TestBuild*' make test-integration
|
|
|
To run the same test inside your Docker development container, you do this:
|
|
|
|
|
|
```bash
|
|
|
-root@5f8630b873fe:/go/src/github.com/moby/moby# TESTFLAGS='-check.f TestBuild*' hack/make.sh binary test-integration
|
|
|
+root@5f8630b873fe:/go/src/github.com/docker/docker# TESTFLAGS='-check.f TestBuild*' hack/make.sh binary test-integration
|
|
|
```
|
|
|
|
|
|
## Test the Windows binary against a Linux daemon
|
|
@@ -188,7 +188,7 @@ run a Bash terminal on Windows.
|
|
|
2. Change to the `moby` source directory.
|
|
|
|
|
|
```bash
|
|
|
- $ cd /c/gopath/src/github.com/moby/moby
|
|
|
+ $ cd /c/gopath/src/github.com/docker/docker
|
|
|
```
|
|
|
|
|
|
3. Set `DOCKER_REMOTE_DAEMON` as follows:
|