Dmitry V. Levin
9f612ffc49
* poll.c (decode_poll_entering, decode_poll_exiting): Fix corner cases of abbreviated output. * tests/ppoll-v.expected: Update. * tests/ppoll.expected: Update. * tests/ppoll.test: Update.
14 lines
222 B
Bash
Executable File
14 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check ppoll syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog
|
|
run_strace -a30 -s2 -e ppoll $args
|
|
match_grep
|
|
run_strace -a30 -v -s2 -e ppoll $args
|
|
match_grep "$LOG" "$srcdir/${ME_%.test}-v.expected"
|
|
|
|
exit 0
|