mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-12 16:56:44 +00:00
16 lines
290 B
Bash
Executable File
16 lines
290 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "containerd test suite FAILED\n"
|
|
exit 1
|
|
}
|
|
|
|
# Get these into the logs.
|
|
git describe HEAD
|
|
git rev-parse HEAD
|
|
|
|
# unset -race (does not work on alpine; see golang/go#14481)
|
|
export TESTFLAGS=
|
|
make root-test || failed
|
|
printf "containerd test suite PASSED\n"
|