12 lines
155 B
Plaintext
12 lines
155 B
Plaintext
|
#!/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
|