From: Jim Meyering Date: Sun, 24 Sep 2006 07:29:44 +0000 (+0000) Subject: * tests/tail-2/proc-ksyms: Require that /proc/ksyms be readable X-Git-Tag: v6.3~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=867251d7250ea87617d971faa3234a91c9d587e7;p=thirdparty%2Fcoreutils.git * tests/tail-2/proc-ksyms: Require that /proc/ksyms be readable as well as existing. --- diff --git a/ChangeLog b/ChangeLog index 152e31d307..fcfde53d92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-09-24 Jim Meyering + * tests/tail-2/proc-ksyms: Require that /proc/ksyms be readable + as well as existing. + * tests/ls/stat-dtype: Don't use tmpfs on linux-2.4 or older, since that predated addition of d_type support. diff --git a/tests/tail-2/proc-ksyms b/tests/tail-2/proc-ksyms index 6a035f78c6..9733a1cbcb 100755 --- a/tests/tail-2/proc-ksyms +++ b/tests/tail-2/proc-ksyms @@ -1,7 +1,7 @@ #!/bin/sh # Prior to textutils-2.0.17, `tail /proc/ksyms' would segfault on Linux. -# Copyright (C) 2001, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2004, 2006 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -31,7 +31,7 @@ trap '(exit $?); exit' 1 2 13 15 fail=0 ksyms=/proc/ksyms -if test -f $ksyms; then +if test -r $ksyms; then tail $ksyms > /dev/null || fail=1 fi