blob: 3a667df8205558ddaeccd701293c6e881ff43f7e [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001#!/bin/sh
2echo "v6test starting:"
3for t in $(find -maxdepth 1 -name test\*_v6); do
4 echo "$t";
5 if $t; then
6 echo "PASS: $t"; echo "";
7 else
8 echo "FAIL: $t"; echo "";
9 fi
10 sleep 1;
11done