From 2c20fd053bd60187a2837933d83238a0586a99f1 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Sat, 4 Jul 2009 10:25:03 +0200 Subject: tests: refactor code to use require_proc_pid_status_ * tests/tail-2/tail-n0f: Read the process status using the test-lib.sh require_proc_pid_status_ function. --- tests/tail-2/tail-n0f | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/tail-2/tail-n0f b/tests/tail-2/tail-n0f index 322fddcf3..fce7ed16e 100755 --- a/tests/tail-2/tail-n0f +++ b/tests/tail-2/tail-n0f @@ -40,9 +40,7 @@ for file in empty nonempty; do tail --sleep=4 -${c_or_n} 0 -f $file & pid=$! sleep .5 - set _ `sed -n '/^State:[ ]*\([^ ]\)/s//\1/p' /proc/$pid/status` - shift # Remove the leading `_'. - state=$1 + state=$(get_process_status_ $pid) case $state in S*) ;; *) echo $0: process in unexpected state: $state 1>&2; fail=1 ;; -- cgit v1.2.3-54-g00ecf