You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
# Check signal injection.
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
: ${suffix=}
|
|
[ -z "${name_override-}" ] || NAME="$name_override"
|
|
|
|
run_strace -a12 -echdir,exit_group -einject=chdir:signal=USR1"$suffix" \
|
|
../$NAME
|
|
match_diff
|