diff options
author | Jim Meyering <jim@meyering.net> | 2006-09-24 07:29:44 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-09-24 07:29:44 +0000 |
commit | 867251d7250ea87617d971faa3234a91c9d587e7 (patch) | |
tree | bc6a1f2565860e838bb15eaeab089a320d1762f1 /tests/tail-2 | |
parent | b4963a7f707de1556dbbc92cd3f0d7ca58f31a1a (diff) | |
download | coreutils-867251d7250ea87617d971faa3234a91c9d587e7.tar.xz |
* tests/tail-2/proc-ksyms: Require that /proc/ksyms be readable
as well as existing.
Diffstat (limited to 'tests/tail-2')
-rwxr-xr-x | tests/tail-2/proc-ksyms | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tail-2/proc-ksyms b/tests/tail-2/proc-ksyms index 6a035f78c..9733a1cbc 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 |