blob: 7b395526be19dba74c2faf8eff3279345a312677 [file] [log] [blame]
Dmitry V. Levin4e4b5ad2011-02-27 00:28:50 +00001#!/bin/sh
2
3# Ensure that strace -f works.
4
5. "${srcdir=.}/init.sh"
6
7check_strace
8check_prog timeout
9time=/usr/bin/time
10check_prog $time
11
Dmitry V. Levin823eba22012-05-01 21:32:09 +000012timeout -s 9 $check_timeout \
Dmitry V. Levin4e4b5ad2011-02-27 00:28:50 +000013$STRACE -f $time /bin/ls > check.log 2>&1 ||
14 { cat check.log; fail_ 'strace -f does not work'; }