15 lines
186 B
Bash
15 lines
186 B
Bash
#!/bin/sh
|
|
|
|
# Check decoding of ipc syscalls
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
OUT="$LOG.out"
|
|
|
|
run_prog > /dev/null
|
|
run_strace -eipc $args > "$OUT"
|
|
match_grep "$LOG" "$OUT"
|
|
|
|
rm -f "$OUT"
|
|
|
|
exit 0
|