#!/bin/sh

. ./test-functions

echo -n "X11 copy paste taints test:	"
( # Sub-shell so as not to taint the test process.
        _wget=$(copy wget)
	cat confidential | ./programs/x11copy
	./programs/x11paste | test_evil_bit $_wget --no-check-certificate -i - --quiet -O /dev/null
	rm -f $_wget
)
