#!/bin/sh

# See also test-case-proc-cmdline-tainted.

. ./test-functions

echo -n "ps taint test:			"
_ps=$(copy ps)
cat confidential - <&3 > /dev/null & # See test-functions for f.d. 3.
pid=$!
sleep 1 # Allow ps to read.
test_taint_logged $_ps aux
kill $pid
rm -f $_ps
