#!/bin/sh

. ../../../SetServiceLocation

count=0

#while true
#do
echo
echo Initializing tester

$tester initialize struct

echo
echo Running cases:
echo
echo tcINVOKE_SWITCH_OPERATIONS
echo -------------------------------------------
echo
$tester run struct tcINVOKE_SWITCH_OPERATIONS | tee Struct.log
echo
echo tcINVOKE_ROUTER_OPERATIONS
echo -------------------------------------------
echo
$tester run struct tcINVOKE_ROUTER_OPERATIONS | tee Struct.log
echo
$tester release struct
count=`expr $count + 1`
echo Tests run: $count
#done
