Lines Matching refs:LOG
12 rm -f $LOG
13 ./set_ptracer_any sleep $((2*$TIMEOUT_DURATION)) > $LOG &
15 while ! [ -s $LOG ]; do
30 rm -f $LOG
31 $STRACE -p $tracee_pid 2> $LOG &
33 while ! grep -F "Process $tracee_pid attached" $LOG > /dev/null; do
35 { cat $LOG; cleanup; fail_ 'strace -p does not work'; }
42 grep -F "Process $tracee_pid detached" $LOG > /dev/null ||
43 { cat $LOG; cleanup; fail_ 'strace -p failed to detach'; }
48 { cat $LOG; cleanup; fail_ 'tracee died after detach'; }
50 cat $LOG