blob: be9f845b37f00fb01c01f85098e8a4450e7a5baf [file] [log] [blame]
Dmitry V. Levin1f111cf2015-11-21 03:03:54 +03001#!/bin/sh
2
3# Check IPPROTO_IP control messages decoding.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8
9OUT="$LOG.out"
10run_strace -erecvmsg $args > "$OUT"
11
12match_diff "$OUT" "$LOG"
13rm -f "$OUT"
14
15exit 0