10 lines
153 B
Bash
Executable file
10 lines
153 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Ensure that strace -f works.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
time=/usr/bin/time
|
|
check_prog $time
|
|
check_prog ls
|
|
run_strace -f $time ls > /dev/null
|