blob: 4bb95fb323f4300522ad79b7277a8223506a3bd8 [file] [log] [blame]
Dmitry V. Levin21547022015-12-05 00:52:01 +00001#!/bin/sh
2
3# Check fcntl decoding.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8OUT="$LOG.out"
9syscall=${ME_%.test}
10run_strace -a8 -e$syscall $args > "$OUT"
11match_diff "$LOG" "$OUT"
12rm -f "$OUT"
13
14exit 0