Home | History | Annotate | Download | only in tests
      1 #!/bin/sh
      2 
      3 uudecode 08-sunrise-sunset-esp2.puu
      4 
      5 echo -n test esp2...
      6 ../tcpdump -t -n -E "0x12345678 (at] 192.1.2.45 3des-cbc-hmac96:0x43434545464649494a4a4c4c4f4f51515252545457575840,0xabcdabcd (at] 192.0.1.1 3des-cbc-hmac96:0x434545464649494a4a4c4c4f4f5151525254545757584043" -r 08-sunrise-sunset-esp2.pcap >esp2.new
      7 if diff esp2.new esp2.out
      8 then
      9 	echo passed.
     10 else
     11 	echo failed.
     12 fi
     13 
     14