11 lines
180 B
Bash
Executable file
11 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check how iovecs in struct mmsghdr are decoded.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog
|
|
run_strace -e trace=recvmmsg,sendmmsg -e read=0 -e write=1 $args
|
|
match_diff
|
|
|
|
exit 0
|