diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/run_tests.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/run_tests.sh b/test/run_tests.sh index 5c6e54c19..a19ec0408 100755 --- a/test/run_tests.sh +++ b/test/run_tests.sh @@ -68,6 +68,12 @@ mkdir -p /tmp/nDPId-test-stderr set +e TESTS_FAILED=0 +${nDPId_test_EXEC} -h 2>/dev/null +if [ $? -ne 1 ]; then + printf '%s\n' "nDPId-test: ${nDPId_test_EXEC} seems to be an invalid executable" + exit 7 +fi + for pcap_file in $(ls *.pcap *.pcapng *.cap); do if file "${pcap_file}" | grep -qoE ':\s(pcap|pcap-ng) capture file'; then true # pass |