Home | History | Annotate | Download | only in tests
      1 #!/bin/sh
      2 
      3 # Ensure that strace -f works.
      4 
      5 . "${srcdir=.}/init.sh"
      6 
      7 time=/usr/bin/time
      8 check_prog $time
      9 
     10 $STRACE -f $time /bin/ls > $LOG 2>&1 ||
     11 	{ cat $LOG; fail_ 'strace -f does not work'; }
     12