File indexing completed on 2024-05-12 16:45:17

0001 #!/bin/sh
0002 EXE=skgtestcalculatoredit
0003 
0004 #initialisation
0005 . "`dirname \"$0\"`/init.sh"
0006 
0007 unset SKGTRACE #does not work if traces activated
0008 
0009 "${EXE}"
0010 rc=$?
0011 if [ $rc != 0 ] ; then
0012         exit $rc
0013 fi
0014 
0015 exit 0