1
0
mirror of https://github.com/containers/youki synced 2024-09-20 02:41:47 +02:00
youki/scripts/rust_integration_tests.sh

38 lines
720 B
Bash
Raw Normal View History

2022-02-19 18:59:10 +01:00
#! /bin/sh -eu
2022-02-06 11:52:18 +01:00
ROOT=$(git rev-parse --show-toplevel)
RUNTIME=$1
2022-02-06 11:52:18 +01:00
if [ "$RUNTIME" = "" ]; then
2022-02-19 19:39:14 +01:00
echo "please specify runtime"
exit 1
fi
if [ ! -e $RUNTIME ]; then
if ! which $RUNTIME ; then
echo "$RUNTIME not found"
exit 1
fi
fi
ROOT=${2-$(git rev-parse --show-toplevel)}
LOGFILE="${ROOT}/test.log"
if [ ! -f ${ROOT}/bundle.tar.gz ]; then
cp ${ROOT}/tests/rust-integration-tests/integration_test/bundle.tar.gz ${ROOT}/bundle.tar.gz
fi
2022-02-06 11:52:18 +01:00
touch ${LOGFILE}
sudo ${ROOT}/integration_test run --runtime "$RUNTIME" --runtimetest ${ROOT}/runtimetest > $LOGFILE
if [ 0 -ne $(grep "not ok" $LOGFILE | wc -l ) ]; then
cat $LOGFILE
exit 1
fi
2022-02-19 19:39:14 +01:00
echo "Validation successful for runtime $1"
exit 0