1#!/bin/sh 2 3# Check how strace -f follows fork syscall. 4 5. "${srcdir=.}/init.sh" 6 7run_prog > /dev/null 8OUT="$LOG.out" 9run_strace -a32 -qq -f -epwrite64 -esignal=none $args > "$OUT" 10match_diff "$LOG" "$OUT" 11rm -f "$OUT" 12 13exit 0 14