blob: 0c4622c5e0a851a04ea4ff2ab0c7607a34a40c13 [file] [log] [blame]
Elliott Hughes5dec78d2014-02-26 15:56:23 -08001#!/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'; }