Dmitry V. Levin | 4918285 | 2015-08-19 01:25:39 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | # Check sendfile64 syscall decoding. | ||||
4 | |||||
5 | . "${srcdir=.}/init.sh" | ||||
6 | |||||
7 | exe="./${ME_%.test}" | ||||
8 | run_prog "$exe" "$exe" > /dev/null | ||||
9 | OUT="$LOG.out" | ||||
Dmitry V. Levin | f14a8e1 | 2015-08-26 23:25:06 +0000 | [diff] [blame] | 10 | run_strace -a24 -esendfile64 $args > "$OUT" |
Dmitry V. Levin | 9c40599 | 2015-11-26 20:36:35 +0000 | [diff] [blame^] | 11 | match_diff "$LOG" "$OUT" |
Dmitry V. Levin | 4918285 | 2015-08-19 01:25:39 +0000 | [diff] [blame] | 12 | rm -f "$OUT" |
13 | |||||
14 | exit 0 |