#!/bin/sh

. ./test-functions

echo -n "Inherited wget test (A):		"
tmp=$(mktemp copy.XXXXXX)
cp confidential $tmp
_wget=$(copy wget)
test_inherit_logged $_wget --no-check-certificate -i $tmp --quiet -O /dev/null
echo -n "                                 (B):		"
test_no_evil_bit    $_wget --no-check-certificate -i $tmp --quiet -O /dev/null
rm -f $tmp
rm -f $_wget
