1 #!/bin/sh 2 3 # Check IPPROTO_IP control messages decoding. 4 5 . "${srcdir=.}/init.sh" 6 7 run_prog > /dev/null 8 9 OUT="$LOG.out" 10 run_strace -erecvmsg $args > "$OUT" 11 12 match_diff "$LOG" "$OUT" 13 rm -f "$OUT" 14 15 exit 0 16