mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-27 20:16:31 +00:00
This does not yet move the `make test` options in the Makefile, will probably move those too later. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
16 lines
221 B
Bash
Executable File
16 lines
221 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"
|
|
|
|
cat /etc/moby
|
|
|
|
/sbin/poweroff -f
|