#!/bin/sh

. ./test-functions

echo -n "Shell script taints self test:	"
( # Sub-shell so as not to taint the test process.
	read IGNORE < confidential
        _wget=$(copy wget)
        test_evil_bit $_wget --no-check-certificate https://$SF_HOSTNAME --quiet -O /dev/null
	rm -f $_wget
)
