Dmitry V. Levin
3de1462ed8
* tests/ioctl.test: Extend the filter of ioctl calls with standard descriptor arguments to -y output.
12 lines
220 B
Bash
Executable File
12 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check ioctl syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
check_prog grep
|
|
run_prog > /dev/null
|
|
run_strace -a16 -eioctl "$@" $args > "$EXP"
|
|
grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT"
|
|
match_diff "$OUT" "$EXP"
|