diff options
author | Rob Landley <rob@landley.net> | 2015-06-25 17:55:54 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-06-25 17:55:54 -0500 |
commit | 325e02ec918246242e89a32c053bf5f767fc37d3 (patch) | |
tree | 8324c104d1878546830228093388404d53fc0b66 /scripts | |
parent | 394094f34fbdc8de91a8acd95b6de09085480bf6 (diff) | |
download | toybox-325e02ec918246242e89a32c053bf5f767fc37d3.tar.gz |
Suggestion from Elliott Hughes: tweak test infrastructure to notice if
command exits with high errno and assume it segfaulted.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/runtest.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index 8da1089e..7f9e8b92 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -86,6 +86,10 @@ testing() echo -ne "$5" | eval "$2" > actual RETVAL=$? + # Catch segfaults + [ $RETVAL -gt 128 ] && [ $RETVAL -lt 255 ] && + echo "exited with signal (or returned $RETVAL)" >> actual + cmp expected actual > /dev/null 2>&1 if [ $? -ne 0 ] then |