blob: 28ecc3e9d68ebaa41883e63f48fcb6e279bf1b46 [file] [log] [blame]
Eugene Syromyatnikov7a036052015-08-04 15:52:55 +03001#!/bin/sh
2
3# Check decoding of times syscall
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8OUT="$LOG.out"
9run_strace -etimes -esignal=none $args > "$OUT"
10match_diff "$OUT" "$LOG"
11rm -f "$OUT"
12
13exit 0