mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-20 20:52:46 +00:00
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp> Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
12 lines
225 B
Bash
Executable File
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"
|