blob: a50bb8851471f939fb8595543169b6d22022321d [file] [log] [blame]
Dmitry V. Levin49182852015-08-19 01:25:39 +00001#!/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 -esendfile64 $args > "$OUT"
11match_grep "$LOG" "$OUT"
12rm -f "$OUT"
13
14exit 0