#!/bin/sh

. ./test-functions

echo -n "Copy maintains conf. test:		"
# Create file now; creating after taint would taint parent directory.
conf_copy=$(mktemp 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
