blob: 3a715b442863f47106ae293611f2943f5fd6429d [file] [log] [blame]
Dmitry V. Levinb8f0c922015-09-16 16:31:43 +00001#!/bin/sh
2
3# Check timer_create syscall decoding.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8OUT="$LOG.out"
9run_strace -e timer_create $args > "$OUT"
Dmitry V. Levin9c405992015-11-26 20:36:35 +000010match_diff "$LOG" "$OUT"
Dmitry V. Levinb8f0c922015-09-16 16:31:43 +000011rm -f "$OUT"
12
13exit 0