13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Check bpf syscall decoding.
|
||
|
|
||
|
. "${srcdir=.}/init.sh"
|
||
|
|
||
|
run_prog > /dev/null
|
||
|
run_strace -ebpf $args > "$OUT"
|
||
|
match_grep "$LOG" "$OUT"
|
||
|
rm -f "$OUT"
|
||
|
|
||
|
exit 0
|