1#! /bin/sh
2
3. ./tests.sh
4
5verbose_run $VALGRIND "$DTC" -o/dev/null "$@"
6ret="$?"
7
8if [ "$ret" -gt 127 ]; then
9    FAIL "dtc killed by signal (ret=$ret)"
10elif [ "$ret" != "1" ]; then
11    FAIL "dtc returned incorrect status $ret instead of 1"
12fi
13
14PASS
15