1#!/bin/sh
2
3# Check how statfs/statfs64 syscalls are traced.
4
5. "${srcdir=.}/init.sh"
6
7# this test probes /proc/self/status
8[ -f /proc/self/status ] ||
9        framework_skip_ '/proc/self/status is not available'
10
11run_prog
12run_strace -efile $args
13match_grep
14
15exit 0
16