blob: 8fdf062e49836d723d90beed5d8f5ad791444d87 [file] [log] [blame]
#!/bin/sh
# Check how strace -f follows fork syscall.
. "${srcdir=.}/init.sh"
run_prog > /dev/null
OUT="$LOG.out"
run_strace -a32 -qq -f -epwrite64 -esignal=none $args > "$OUT"
match_diff "$LOG" "$OUT"
rm -f "$OUT"
exit 0