12 lines
207 B
Bash
Executable File
12 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check msgget, msgsnd, msgrcv, msgctl syscalls decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog
|
|
run_strace -a26 -v -e msgget,msgsnd,msgrcv,msgctl "$@" $args > "$EXP"
|
|
match_grep "$LOG" "$EXP"
|
|
|
|
exit 0
|