mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 00:24:03 -04:00
13 lines
147 B
Bash
Executable File
13 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo -n test lmp ...
|
|
../tcpdump -t -n -v -v -v -r lmp.pcap >lmp.new
|
|
if diff lmp.new lmp.out
|
|
then
|
|
echo passed.
|
|
else
|
|
echo failed.
|
|
fi
|
|
|
|
|