#!/bin/sh

. ./test-functions

echo -n "Untainted ping test:		"
( # Sub-shell so as not to taint the test process.
        _ping=$(copy ping)
        test_no_evil_bit $_ping -c 1 8.8.8.8
	rm -f $_ping
)
