mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-25 16:13:17 +00:00
13 lines
181 B
Bash
13 lines
181 B
Bash
#!/bin/sh
|
|
|
|
echo -n test esp0...
|
|
uudecode 02-sunrise-sunset-esp.puu
|
|
if (../tcpdump -t -n -r 02-sunrise-sunset-esp.pcap | diff - esp0.out)
|
|
then
|
|
echo passed.
|
|
else
|
|
echo failed.
|
|
fi
|
|
|
|
|