blob: 9aaf74ba237798dd9f0baa29f5830893fb464b39 [file] [log] [blame]
Dmitry V. Levinf0964222016-04-19 18:28:03 +00001#!/bin/sh
2
3# Check getuid syscall decoding.
4
5. "${srcdir=.}/init.sh"
6
7check_prog uniq
8run_prog > /dev/null
9run_strace -qq -a9 -e$NAME $args > "$EXP"
10uniq < "$LOG" > "$OUT"
11match_diff "$OUT" "$EXP"
12rm -f "$OUT" "$EXP"