#!/bin/sh

. ./test-functions

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