blob: 3a667df8205558ddaeccd701293c6e881ff43f7e [file] [log] [blame]
#!/bin/sh
echo "v6test starting:"
for t in $(find -maxdepth 1 -name test\*_v6); do
echo "$t";
if $t; then
echo "PASS: $t"; echo "";
else
echo "FAIL: $t"; echo "";
fi
sleep 1;
done