blob: 025e61b3cd0092f11a286fa565a4677371ce2237 [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"
Dmitry V. Levinf14a8e12015-08-26 23:25:06 +000010run_strace -a24 -esendfile64 $args > "$OUT"
Dmitry V. Levin9c405992015-11-26 20:36:35 +000011match_diff "$LOG" "$OUT"
Dmitry V. Levin49182852015-08-19 01:25:39 +000012rm -f "$OUT"
13
14exit 0