Dmitry V. Levin | f9b455c | 2015-08-18 13:25:36 +0000 | [diff] [blame^] | 1 | #!/bin/sh |
2 | |||||
3 | # Check time syscall decoding. | ||||
4 | |||||
5 | . "${srcdir=.}/init.sh" | ||||
6 | |||||
7 | run_prog > /dev/null | ||||
8 | OUT="$LOG.out" | ||||
9 | run_strace -etime $args > "$OUT" | ||||
10 | match_grep "$LOG" "$OUT" | ||||
11 | rm -f "$OUT" | ||||
12 | |||||
13 | exit 0 |