blob: a03350812ff6f14e49d9ff2fb5bacd91a918ed42 [file] [log] [blame]
Dmitry V. Levin7528a0b2015-11-19 16:39:32 +00001#!/bin/sh
2
3# Check getdents64 syscall decoding.
4
5. "${srcdir=.}/init.sh"
6
7rm -rf -- "$LOG".dir
8run_prog > /dev/null
9
10OUT="$LOG.out"
11run_strace -a24 -vegetdents64 $args > "$OUT"
12
13match_diff "$OUT" "$LOG"
14rm -f "$OUT"
15
16exit 0