1#!/bin/sh
2
3# Check decoding of prctl PR_GET_DUMPABLE and PR_SET_DUMPABLE operations.
4. "${srcdir=.}/init.sh"
5
6check_prog grep
7run_prog > /dev/null
8run_strace -a23 -eprctl $args > "$EXP"
9grep -v '^prctl(PR_[GS]ET_[^D][^U]' < "$LOG" > "$OUT"
10match_diff "$OUT" "$EXP"
11