11 lines
210 B
Bash
Executable file
11 lines
210 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check _llseek syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
check_prog grep
|
|
run_prog > /dev/null
|
|
run_strace -e_llseek $args > "$EXP"
|
|
grep -v '^lseek([0-9]' < "$LOG" > "$OUT"
|
|
match_diff "$OUT" "$EXP"
|