mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-06 02:17:24 +00:00
- 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>
13 lines
205 B
Bash
Executable File
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
|