Dmitry V. Levin
4e4b5adfab
* Makefile.am (SUBDIRS): Add tests. * configure.ac (AC_CONFIG_FILES): Add tests/Makefile. * tests/.gitignore: New file. * tests/Makefile.am: Likewise. * tests/init.sh: Likewise. * tests/ptrace_setoptions: Likewise. * tests/strace-f: Likewise.
15 lines
252 B
Bash
Executable File
15 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Ensure that strace -f works.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
check_strace
|
|
check_prog timeout
|
|
time=/usr/bin/time
|
|
check_prog $time
|
|
|
|
timeout -s 9 9 \
|
|
$STRACE -f $time /bin/ls > check.log 2>&1 ||
|
|
{ cat check.log; fail_ 'strace -f does not work'; }
|