13 lines
201 B
Bash
Executable file
13 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check decoding of times syscall
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog > /dev/null
|
|
OUT="$LOG.out"
|
|
run_strace -etimes -esignal=none $args > "$OUT"
|
|
match_diff "$LOG" "$OUT"
|
|
rm -f "$OUT"
|
|
|
|
exit 0
|