#!/bin/sh

. ./test-functions

echo -n "ps Z user test:			"
su -c "ps hZ" $SUDO_USER | grep -v ^[01] > /dev/null
if [ $? = 0 ]; then
	passmsg ps did not contain SimpleFlow information
else
	failmsg ps contained SimpleFlow information
fi
