Files
linuxkit/tools/check/check.sh
Justin Cormack 159202416c Out with the old, in with the new Moby
- remove remainder of editions code
- add a new check container to run tests without Docker
- switch over `make test` to use new command to build tests

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-03-06 22:28:41 +00:00

13 lines
205 B
Bash
Executable File

#!/bin/sh
function failed {
printf "Moby test suite FAILED\n"
/sbin/poweroff -f
}
/check-kernel-config.sh || failed
bash /check-config.sh || failed
printf "Moby test suite PASSED\n"
/sbin/poweroff -f