#!/bin/sh

. ./test-functions

echo -n "Tainted ping test:			"
_ping=$(copy ping)
( # Sub-shell so as not to taint the test process.
	read IGNORE < confidential
        test_evil_bit $_ping -c 1 8.8.8.8
)
rm -f $_ping
