1#!/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 16