1#!/bin/sh
2
3# Check decoding of utimensat syscall.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8run_strace -e utimensat $args > "$OUT"
9
10check_prog grep
11LC_ALL=C grep -x "utimensat(.*" "$LOG" > /dev/null || {
12        rm -f "$OUT"
13        skip_ 'test executable does not use utimensat syscall'
14}
15
16match_diff "$LOG" "$OUT"
17
18rm -f "$OUT"
19
20exit 0
21