blob: 41b0957bf1078ca5d055dd0692ac563daa71755a [file] [log] [blame]
Dmitry V. Levinc1bb87a2015-12-01 00:02:45 +00001#!/bin/sh
2
3# Check truncate syscall decoding.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8OUT="$LOG.out"
9run_strace -etruncate $args > "$OUT"
10match_diff "$LOG" "$OUT"
11rm -f "$OUT"
12
13exit 0