11 lines
181 B
Bash
Executable file
11 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check mq_open, mq_getsetattr, mq_unlink syscalls decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog
|
|
run_strace -v -e mq_getsetattr,mq_open,mq_unlink $args
|
|
match_grep
|
|
|
|
exit 0
|