Blame tests/proc

Packit 709fb3
#! /bin/sh
Packit 709fb3
# Test the /proc file system if available.
Packit 709fb3
Packit 709fb3
# Copyright 2016-2017 Free Software Foundation, Inc.
Packit 709fb3
#
Packit 709fb3
# Copying and distribution of this file, with or without modification,
Packit 709fb3
# are permitted in any medium without royalty provided the copyright
Packit 709fb3
# notice and this notice are preserved.
Packit 709fb3
Packit 709fb3
. "${srcdir=.}/init.sh"; path_prepend_ ../src
Packit 709fb3
Packit 709fb3
fail=0
Packit 709fb3
Packit 709fb3
test -r /proc/self/status || skip_ 'No /proc/self/status on this platform.'
Packit 709fb3
Packit 709fb3
grep '^' </proc/self/status >/dev/null || fail=1
Packit 709fb3
Packit 709fb3
Exit $fail