1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
# Utility functions and parameters for regression tests
# No longer very useful with CMake but whatever
# Predefined directories you may need
builddir="@CMAKE_BINARY_DIR@"
sourcedir="@CMAKE_SOURCE_DIR@"
tests=$sourcedir/test
data=$sourcedir/test/data
model=$sourcedir/model
programs=$builddir
# Automatically report failures on exit
failures=""
trap "fail $0" 4 6 7 10 11
trap "report_failures" 0
run_program() {
program="$1"
shift
"$programs/$program" "$@"
}
debug_program() {
program="$1"
shift
gdb --args "$programs/$program" "$@"
}
memcheck_program() {
program="$1"
shift
valgrind --leak-check=full "$programs/$program" "$@"
}
pass() {
title="$1"
echo "$title PASSED"
}
fail() {
title="$1"
echo "$title FAILED"
failures="$failures,$title"
}
compare_table() {
title="$1"
shift
if perl "$tests/compare_table.pl" "$@" | grep SUCCESS >/dev/null 2>&1; then
pass "$title"
else
fail "$title"
fi
}
report_failures() {
if test x"$failures" = x; then
echo "All sub-tests passed"
exit 0
else
echo "Sub-tests failed:$failures" | sed -e 's/,/ /g'
exit 1
fi
}
|