diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/tail-2/tail-n0f | 4 |
1 files changed, 1 insertions, 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 ;; |