Home | History | Annotate | Download | only in tests
      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"
     10 run_strace -a24 -esendfile64 $args > "$OUT"
     11 match_diff "$LOG" "$OUT"
     12 rm -f "$OUT"
     13 
     14 exit 0
     15