Dmitry V. Levin | 77a1b6b | 2015-09-15 02:14:38 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | # Check pselect6 syscall decoding. | ||||
4 | |||||
5 | . "${srcdir=.}/init.sh" | ||||
6 | |||||
7 | run_prog > /dev/null | ||||
8 | OUT="$LOG.out" | ||||
9 | run_strace -e pselect6 $args > "$OUT" | ||||
10 | match_diff "$OUT" "$LOG" | ||||
11 | |||||
12 | rm -f "$OUT" | ||||
13 | |||||
14 | exit 0 |