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