#!/bin/sh

. ./test-functions

echo -n "Copy maintains conf. test:		"
	_conf_copy=$(mktemp -u sft-XXXXXX)
	_wget=$(copy wget)
	( cp confidential $_conf_copy )
	test_evil_bit $_wget --no-check-certificate -i $_conf_copy --quiet -O /dev/null
	rm -f $_conf_copy
	rm -f $_wget

