#!/bin/sh

. ./test-functions

echo -n "Tainted seek test:			"
( # Sub-shell so as not to taint the test process.
	IGNORE=`./programs/forkseek never` 2> /dev/null
)
if [ $? != 0 ]; then
	failmsg not tainted and no seek never file
else
	passmsg not tainted and seek never file
fi
