build: update gnulib to latest; and update bootstrap
[grep.git] / tests / proc
blob40f2aa14d6a22b0968dbd66e812252efb6fce80c
1 #! /bin/sh
2 # Test the /proc file system if available.
4 # Copyright 2016-2025 Free Software Foundation, Inc.
6 # Copying and distribution of this file, with or without modification,
7 # are permitted in any medium without royalty provided the copyright
8 # notice and this notice are preserved.
10 . "${srcdir=.}/init.sh"; path_prepend_ ../src
12 fail=0
14 test -r /proc/self/status || skip_ 'No /proc/self/status on this platform.'
16 grep '^' </proc/self/status >/dev/null || fail=1
18 Exit $fail