blob: 8725468694ab0f6c6e8f48a6e32bfbdc9459a923 [file] [log] [blame]
Dmitry V. Levinddb53dd2015-07-25 23:55:51 +00001#!/bin/sh
2
3# Check bpf syscall decoding.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8OUT="$LOG.out"
9run_strace -ebpf $args > "$OUT"
10match_grep "$LOG" "$OUT"
11rm -f "$OUT"
12
13exit 0