Files
linuxkit/test/pkg/containerd/run.sh
Akihiro Suda 4699f80ef7 test: add test-containerd
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
2017-06-19 11:04:58 -07:00

12 lines
225 B
Bash
Executable File

#!/bin/sh
function failed {
printf "containerd test suite FAILED\n"
exit 1
}
# unset -race (does not work on alpine; see golang/go#14481)
export TESTFLAGS=
make root-test || failed
printf "containerd test suite PASSED\n"