mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ff91276d1f
moves ensure-frozen-images to go moves ensure-syscall-test to go moves ensure-nnp-test to go moves ensure-httpserver to go Also makes some of the fixtures load only for the required tests. This makes sure that fixtures that won't be needed for a test run such as `make TESTFLAGS='-check.f Swarm' test-integration-cli` (for example) aren't loaded... like the syscall tests. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
7 lines
122 B
Bash
7 lines
122 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
bundle .detect-daemon-osarch
|
|
if [ $DOCKER_ENGINE_GOOS != "windows" ]; then
|
|
bundle .ensure-emptyfs
|
|
fi
|