1#!/bin/sh 2 3# Check _llseek syscall decoding. 4 5. "${srcdir=.}/init.sh" 6 7check_prog grep 8run_prog > /dev/null 9run_strace -e_llseek $args > "$EXP" 10grep -v '^lseek([0-9]' < "$LOG" > "$OUT" 11match_diff "$OUT" "$EXP" 12 13rm -f "$EXP" "$OUT" 14 15exit 0 16