strace/tests/strace-ttt.test
Dmitry V. Levin 51694267bd tests: fix expected output in strace-ttt.test
If strace -ttt is running too long, it might happen that time stamps
before and after its invocation differ for more than a second.
Adjust expected output to handle this rare but possible case.

* tests/strace-ttt.test: Allow any time stamp between start and finish
of strace invocation.
2016-12-06 15:27:21 +00:00

27 lines
490 B
Bash
Executable File

#!/bin/sh
# Check -ttt option.
. "${srcdir=.}/init.sh"
run_prog_skip_if_failed date +%s > /dev/null
run_prog ./sleep 0
s0="$(date +%s)"
run_strace -ttt -eexecve $args
s1="$(date +%s)"
s="$s0"
t_reg=
while [ "$s" -le "$s1" ]; do
[ -z "$t_reg" ] && t_reg="$s" || t_reg="$t_reg|$s"
s=$(($s + 1))
done
cat > "$EXP" << __EOF__
($t_reg)\\.[[:digit:]]{6} execve\\("\\./sleep", \\["\\./sleep", "0"\\], \\[/\\* [[:digit:]]+ vars \\*/\\]\\) = 0
__EOF__
match_grep "$LOG" "$EXP"
rm -f "$EXP"