11 lines
155 B
Bash
Executable file
11 lines
155 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check how pread/pwrite and preadv/pwritev syscalls are traced.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog
|
|
run_strace -e%desc $args
|
|
match_grep
|
|
|
|
exit 0
|