#!/bin/sh

. ./test-functions

echo -n "X11 untainted test:		"
( # Sub-shell so as not to taint the test process.
        _wget=$(copy wget)
	echo https://$SF_HOSTNAME | ./programs/x11pipe | test_no_evil_bit $_wget --no-check-certificate -i - --quiet -O /dev/null
	rm -f $_wget
)
