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 fault injection along with signal injection.
|
|
. "${srcdir=.}/scno_tampering.sh"
|
|
|
|
: ${suffix=}
|
|
[ -z "${name_override-}" ] || NAME="$name_override"
|
|
|
|
run_strace -a12 -echdir,exit_group \
|
|
-einject=chdir:error=ENOENT:signal=USR1"$suffix" \
|
|
"../$NAME"
|
|
match_diff
|