* tests/ioctl.test: Filter out from the log ioctl calls with standard
descriptor arguments.
Reported-by: Szabolcs Nagy <nsz@port70.net>
. "${srcdir=.}/init.sh"
-run_prog > /dev/null
OUT="$LOG.out"
-run_strace -a16 -e ioctl $args > "$OUT"
-match_diff "$LOG" "$OUT"
-rm -f "$OUT"
+EXP="$LOG.exp"
+
+run_prog > /dev/null
+run_strace -a16 -eioctl $args > "$EXP"
+check_prog grep
+grep -v '^ioctl([012],' < "$LOG" > "$OUT"
+match_diff "$OUT" "$EXP"
+
+rm -f "$EXP" "$OUT"
exit 0