#!/bin/sh

. ./test-functions

echo -n "Cannot copy to never test:		"
( # Sub-shell so as not to taint the test process.
	cp confidential never
	if [ $? = 0 ]; then
		failmsg tainted wrote to never file
	else
		passmsg tainted no write to never file
	fi
) 2> /dev/null
