#!/bin/tcsh

source ../cmt/setup.csh
cmdomain CascinaTest

$DYROOT/test/dytest 14 >& /tmp/dyout_$$  &

sleep 30

kill %1

set OUT=`cat /tmp/dyout_$$ | grep 'frame received from'`

if ( "$OUT" != "" ) then

echo "Test OK"

endif

/bin/rm /tmp/dyout_$$

exit 0

