From 9f3690c39c2bd7cefbed8e3ea1f9519dd25d35c8 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 30 Jul 2011 18:47:58 +0200 Subject: [PATCH] Testsuite: make getpid.sh work even when run as root MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Use ps(1) flag "-a" (as well as "-f"): "Select all processes except both session leaders (see getsid(2)) and processes not associated with a terminal." Thanks to Götz Hoffart for reporting this problem! --- src/testsuite/getpid.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testsuite/getpid.sh b/src/testsuite/getpid.sh index 5e169175..fd3b3422 100755 --- a/src/testsuite/getpid.sh +++ b/src/testsuite/getpid.sh @@ -16,7 +16,7 @@ elif [ $UNAME = "GNU" ]; then elif [ $UNAME = "SunOS" ]; then PS_FLAGS="-af"; PS_PIDCOL=2; HEAD_FLAGS="-n 1" else - PS_FLAGS="-f"; PS_PIDCOL="2"; HEAD_FLAGS="-n 1" + PS_FLAGS="-af"; PS_PIDCOL="2"; HEAD_FLAGS="-n 1" ps $PS_FLAGS > /dev/null 2>&1 if [ $? -ne 0 ]; then PS_FLAGS="a"; PS_PIDCOL="1"; fi fi -- 2.40.0