mirror of
https://github.com/containers/youki
synced 2025-11-09 18:38:43 +01:00
41 lines
790 B
Bash
Executable File
41 lines
790 B
Bash
Executable File
#! /bin/sh -eu
|
|
|
|
ROOT=$(git rev-parse --show-toplevel)
|
|
RUNTIME=$1
|
|
shift
|
|
|
|
if [ "$RUNTIME" = "" ]; then
|
|
echo "please specify runtime"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -e $RUNTIME ]; then
|
|
if ! which $RUNTIME ; then
|
|
echo "$RUNTIME not found"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
LOGFILE="${ROOT}/test.log"
|
|
|
|
if [ ! -f ${ROOT}/bundle.tar.gz ]; then
|
|
cp ${ROOT}/tests/contest/contest/bundle.tar.gz ${ROOT}/bundle.tar.gz
|
|
fi
|
|
touch ${LOGFILE}
|
|
|
|
if [ $# -gt 0 ]; then
|
|
${ROOT}/contest run --runtime "$RUNTIME" --runtimetest "${ROOT}/runtimetest" -t "$@" > "$LOGFILE"
|
|
else
|
|
${ROOT}/contest run --runtime "$RUNTIME" --runtimetest "${ROOT}/runtimetest" > "$LOGFILE"
|
|
fi
|
|
|
|
if [ 0 -ne $(grep "not ok" $LOGFILE | wc -l ) ]; then
|
|
cat $LOGFILE
|
|
exit 1
|
|
fi
|
|
|
|
echo "Validation successful for runtime $RUNTIME"
|
|
exit 0
|
|
|
|
|