You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
480 B
25 lines
480 B
#!/bin/sh
|
|
|
|
exitcode=0
|
|
|
|
# NFLOG support depends on both DLT_NFLOG and working <pcap/nflog.h>
|
|
|
|
if grep '^#define HAVE_PCAP_NFLOG_H 1$' ../config.h >/dev/null
|
|
then
|
|
passed=`cat .passed`
|
|
failed=`cat .failed`
|
|
if ./TESTonce nflog-e nflog.pcap nflog-e.out '-e'
|
|
then
|
|
passed=`expr $passed + 1`
|
|
echo $passed >.passed
|
|
else
|
|
failed=`expr $failed + 1`
|
|
echo $failed >.failed
|
|
exitcode=1
|
|
fi
|
|
else
|
|
printf ' %-35s: TEST SKIPPED (compiled w/o NFLOG)\n' 'nflog-e'
|
|
fi
|
|
|
|
exit $exitcode
|