Adding upstream version 2.0.0+debian.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
65eb8bc08a
commit
1cf0d30d41
191 changed files with 48816 additions and 0 deletions
25
src/test/test14.sh
Executable file
25
src/test/test14.sh
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/bin/sh -xe
|
||||
|
||||
echo "-- only 1" >test14.out
|
||||
../dnscap -g -q 1 -r dns.pcap-dist 2>>test14.out
|
||||
echo "-- not 1" >>test14.out
|
||||
../dnscap -g -Q 1 -r dns.pcap-dist 2>>test14.out
|
||||
echo "-- only PTR" >>test14.out
|
||||
../dnscap -g -q PTR -r dns.pcap-dist 2>>test14.out
|
||||
echo "-- not PTR" >>test14.out
|
||||
../dnscap -g -Q PTR -r dns.pcap-dist 2>>test14.out
|
||||
|
||||
echo "-- only 1" >>test14.out
|
||||
../dnscap -g -o use_layers=yes -q 1 -r dns.pcap-dist 2>>test14.out
|
||||
echo "-- not 1" >>test14.out
|
||||
../dnscap -g -o use_layers=yes -Q 1 -r dns.pcap-dist 2>>test14.out
|
||||
echo "-- only PTR" >>test14.out
|
||||
../dnscap -g -o use_layers=yes -q PTR -r dns.pcap-dist 2>>test14.out
|
||||
echo "-- not PTR" >>test14.out
|
||||
../dnscap -g -o use_layers=yes -Q PTR -r dns.pcap-dist 2>>test14.out
|
||||
|
||||
mv test14.out test14.out.old
|
||||
grep -v "^libgcov profiling error:" test14.out.old > test14.out
|
||||
rm test14.out.old
|
||||
|
||||
diff test14.out "$srcdir/test14.gold"
|
Loading…
Add table
Add a link
Reference in a new issue