#!/bin/sh

. ./test-functions

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