#!/bin/bash
#
#help
#Syntax:   regression
#Function: Run spamkiller regression tests
#Options:  None
#end

if [ "$1" == '-?' ]
then
	script_help $0
	exit 1
fi

for f in test_data/*
do
	if [ ! -d "$f" ]
	then
		runsk -r $f
		echo "=============================="
		sleep 2
		killall nc 2>/dev/null
	fi
done
