1#!/bin/sh 2 3# Check sendfile64 syscall decoding. 4 5. "${srcdir=.}/init.sh" 6 7exe="./${ME_%.test}" 8run_prog "$exe" "$exe" > /dev/null 9OUT="$LOG.out" 10run_strace -a24 -esendfile64 $args > "$OUT" 11match_diff "$LOG" "$OUT" 12rm -f "$OUT" 13 14exit 0 15