blob: 4101cae130c63067f509ad1987bcd6bf51cb04ed [file] [log] [blame]
Dmitry V. Levin485f8fb2015-03-19 00:40:49 +00001#!/bin/sh
2
3# Check how SECCOMP_MODE_FILTER is decoded.
4
5. "${srcdir=.}/init.sh"
6
7OUT="$LOG.out"
8
9run_prog > /dev/null
10run_strace -veprctl $args > "$OUT"
11match_diff "$LOG" "$OUT"
12
13rm -f "$OUT"
14
15exit 0