about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-05-13 16:12:38 +0000
committerUlrich Drepper <drepper@redhat.com>1998-05-13 16:12:38 +0000
commit7eb759de39981a77059b94a58193e84bf6656a1e (patch)
tree35740553cbcec6b71df8258e17217c9c6a6358e3
parenta7c378d8cdaea230b545936dede0d3aa567429b6 (diff)
downloadglibc-7eb759de39981a77059b94a58193e84bf6656a1e.tar.gz
glibc-7eb759de39981a77059b94a58193e84bf6656a1e.tar.xz
glibc-7eb759de39981a77059b94a58193e84bf6656a1e.zip
Update.
	* io/ftwtest-sh: Prevent tests from being run by root.
-rw-r--r--ChangeLog2
-rw-r--r--io/ftwtest-sh4
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 50a06c2cd9..ef83e4d57f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1998-05-13  Ulrich Drepper  <drepper@cygnus.com>
 
+	* io/ftwtest-sh: Prevent tests from being run by root.
+
 	* wcsmbs/wcsmbsload.c (extract_charset_name): Fix silly bugs in
 	last addition.  Patch by wkpark@chem.skku.ac.kr.
 
diff --git a/io/ftwtest-sh b/io/ftwtest-sh
index 0ae6ecd51a..dadbfa0ca6 100644
--- a/io/ftwtest-sh
+++ b/io/ftwtest-sh
@@ -11,6 +11,10 @@ objpfx=$1
 #   --depth	use the FTW_DEPTH flag
 testprogram=$2
 
+# We cannot test this as root.
+if test `id | sed "s/uid=\([0-9]*\).*/\1/"` = 0; then
+  exit 0
+fi
 
 # First create our scenario:
 tmp=`echo ${TMPDIR:-/tmp} | sed 's|\(.\)/*$|\1|'`