blob: 1676708cdaad72db345b08a4053cab19720ae33c [file] [log] [blame]
Dmitry V. Levin4b3a1702015-11-22 21:29:32 +00001#!/bin/sh
2
3# Check name_to_handle_at and open_by_handle_at syscalls decoding.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
Dmitry V. Levin4b3a1702015-11-22 21:29:32 +00008run_strace -ename_to_handle_at,open_by_handle_at $args > "$OUT"
Dmitry V. Levin9c405992015-11-26 20:36:35 +00009match_diff "$LOG" "$OUT"
Dmitry V. Levin4b3a1702015-11-22 21:29:32 +000010rm -f "$OUT"
11
12exit 0