#!/bin/tcsh

#Check use of INT, FLOAT and DOUBLE messages. LONG will not work between 2 platforms with this
# type of diffrent size. It's not available anyway on cm send See SPR #331
source ${CMROOT}/mgr/CmConfig.sh ${CMROOT} CascinaVCS
source ../cmt/setup.csh


$CMROOT/$CMCONFIG/test_type.exe &
sleep 1

/usr/bin/ssh swtest6 "source $CMROOT/cmt/setup.sh; export CMDOMAIN=CascinaVCS; $CMROOT/$UNAME/cm.exe send -to test_type -type INT -i 3; $CMROOT/$UNAME/cm.exe send -to test_type -type FLOAT -f 3.3; $CMROOT/$UNAME/cm.exe send -to test_type -type DOUBLE -d 3.3 " 


kill %1

exit 0

