#!/bin/sh

. ./test-functions

echo -n "Separate process not tainted:	"
(
	_wget=$(copy wget)
	wget -i confidential --quiet -O /dev/null
	test_no_evil_bit $_wget --no-check-certificate https://$SF_HOSTNAME --quiet -O /dev/null
	rm -f $_wget
)
