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

0001 #!/bin/sh
0002 EXE=skgtestimportqif2
0003 
0004 #initialisation
0005 . "`dirname \"$0\"`/init.sh"
0006 
0007 "${EXE}"
0008 rc=$?
0009 if [ $rc != 0 ] ; then
0010         exit $rc
0011 fi
0012 
0013 checkDiff "${OUT}/skgtestimportqif2/export_all.qif" "${REF}/skgtestimportqif2/export_all.qif"
0014 checkDiff "${OUT}/skgtestimportqif2/export_la.qif" "${REF}/skgtestimportqif2/export_la.qif"
0015 
0016 exit 0