Dmitry V. Levin
19ff2b2ee7
* tests/ioctl.test: Filter out from the log ioctl calls with standard descriptor arguments. Reported-by: Szabolcs Nagy <nsz@port70.net>
19 lines
272 B
Bash
Executable File
19 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check ioctl syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
OUT="$LOG.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
|