Signed-off-by: Christopher Crone <christopher.crone@docker.com> Upstream-commit: 07f10d8e2e2214000635c32d23f9435fa3fb48b8 Component: engine
14 lines
304 B
Bash
Executable File
14 lines
304 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Ensure emptyfs image is loaded"
|
|
bash /ensure-emptyfs.sh
|
|
|
|
echo "Run integration/container tests"
|
|
cd /tests/integration/container
|
|
./test.main -test.v
|
|
|
|
echo "Run integration-cli DockerSuite tests"
|
|
cd /tests/integration-cli
|
|
./test.main -test.v -check.v -check.f DockerSuite
|