16 lines
240 B
Bash
Executable File
16 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check lseek syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
check_prog grep
|
|
run_prog > /dev/null
|
|
run_strace -a30 -elseek $args > "$EXP"
|
|
grep -v '^lseek([0-9]' < "$LOG" > "$OUT"
|
|
match_diff "$OUT" "$EXP"
|
|
|
|
rm -f "$EXP" "$OUT"
|
|
|
|
exit 0
|