server/s/runtests

33 lines
892 B
Plaintext
Raw Normal View History

#!/bin/bash
2015-05-21 17:44:36 +02:00
set -e
2020-04-19 21:35:48 +02:00
2020-05-01 17:46:14 +02:00
eval $(luarocks path)
ROOT=$(git rev-parse --show-toplevel)
2015-07-11 23:25:09 +02:00
[ -z $BUILD ] && BUILD=Debug ; export BUILD
UNIT_TESTS=$ROOT/$BUILD/eressea/test_eressea
RUN_TESTS=$ROOT/$BUILD/eressea/eressea
if [ "$1" = "-V" ]; then
VALGRIND=$(which valgrind)
if [ -n "$VALGRIND" ]; then
SUPP=$ROOT/share/ubuntu-12_04.supp
UNIT_TESTS="$VALGRIND --quiet --suppressions=$SUPP --error-exitcode=1 --leak-check=no $UNIT_TESTS"
RUN_TESTS="$VALGRIND --quiet --suppressions=$SUPP --error-exitcode=1 --leak-check=no $RUN_TESTS"
fi
fi
2015-07-11 23:25:09 +02:00
if [ ! -e $ROOT/$BUILD ]; then
echo "cannot find build directory $BUILD in $ROOT. did you run cmake-init?"
exit
fi
$UNIT_TESTS
cd $ROOT/tests
$RUN_TESTS -v1 ../scripts/run-tests.lua
$RUN_TESTS -v1 ../scripts/run-tests-e2.lua
$RUN_TESTS -v1 ../scripts/run-tests-e3.lua
$RUN_TESTS --version
rm -rf reports orders.txt score score.alliances datum turn
2015-05-21 13:18:52 +02:00
cd $OLDWPD