mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-01 12:19:28 +00:00
15 lines
159 B
Bash
Executable File
15 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uudecode lmp.puu
|
|
|
|
echo -n test lmp ...
|
|
../tcpdump -t -n -v -r lmp.pcap >lmp.new
|
|
if diff lmp.new lmp.out
|
|
then
|
|
echo passed.
|
|
else
|
|
echo failed.
|
|
fi
|
|
|
|
|