mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-18 06:27:20 +00:00
26 lines
354 B
Plaintext
Executable File
26 lines
354 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
depend()
|
|
{
|
|
need docker containerd
|
|
}
|
|
|
|
start()
|
|
{
|
|
[ -d /test ] || exit 0
|
|
|
|
ebegin "Running tests"
|
|
|
|
if containerd-ctr containers start --no-pivot --attach test /test
|
|
then
|
|
printf "Moby test suite PASSED\n"
|
|
else
|
|
printf "Moby test suite FAILED\n"
|
|
fi
|
|
|
|
eend "Tests completed"
|
|
|
|
# now terminate with extreme prejudice
|
|
poweroff -f
|
|
}
|