summaryrefslogtreecommitdiff
path: root/tests/dtc-fatal.sh
blob: 6781ced9a67063c1ddd3cbc043af43b0eafdc6e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

. ./tests.sh

verbose_run $VALGRIND "$DTC" -o/dev/null "$@"
ret="$?"

if [ "$ret" -gt 127 ]; then
    FAIL "dtc killed by signal (ret=$ret)"
elif [ "$ret" != "1" ]; then
    FAIL "dtc returned incorrect status $ret instead of 1"
fi

PASS