diff options
Diffstat (limited to 'tests/do.sh')
-rwxr-xr-x | tests/do.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/do.sh b/tests/do.sh index 89a27c43a..3598146a5 100755 --- a/tests/do.sh +++ b/tests/do.sh @@ -3,6 +3,7 @@ cd "$(dirname "${0}")" READER="../example/ndpiReader -p ../example/protos.txt -c ../example/categories.txt" +UNIT="./unit/unit" RC=0 PCAPS=`cd pcap; /bin/ls *.pcap` @@ -45,8 +46,17 @@ check_results() { done } +check_unit() { + $UNIT + UNIT_RC=$? + if [ $UNIT_RC -ne 0 ]; then + RC=1 + fi +} + fuzzy_testing build_results check_results +check_unit exit $RC |