#!/bin/sh

# Check decoding of failing times syscall

. "${srcdir=.}/init.sh"

run_prog > /dev/null
OUT="$LOG.out"
run_strace -a12 -etimes $args > "$OUT"
match_diff "$LOG" "$OUT"
rm -f "$OUT"

exit 0