#!/bin/sh

. ../../../SetServiceLocation

count=0

#while true
#do
echo
echo Initializing tester

$tester initialize abnormal

echo
echo Running cases:
echo
echo tcINVOKE_ABNORMAL
echo -------------------------------------------
echo
$tester run abnormal tcINVOKE_ABNORMAL | tee Abnormal.log
echo
$tester release abnormal
count=`expr $count + 1`
echo Tests run: $count
#done

