1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 02:10:57 +02:00

* tests/tail-2/proc-ksyms: Require that /proc/ksyms be readable

as well as existing.
This commit is contained in:
Jim Meyering
2006-09-24 07:29:44 +00:00
parent b4963a7f70
commit 867251d725
2 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
2006-09-24 Jim Meyering <jim@meyering.net>
* 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.

View File

@@ -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