#!/bin/sh
# isom.d/src and isom.d/bin file testisom
#First set the directory
PATHDIR=false
DIR=`echo $0 | sed -e 's/[^\/]*$//'`
if test -f ${DIR}testisom
    then
		# found the necessary file, so do nothing.
		:
	else
		PATHDIR=true
		DIR=
fi
echo Running ${DIR}testisom through test files g0 to g20.
if test $PATHDIR = true
	then
		echo Using version of testisom in path. 
fi
#Now find options
flags=
case $1 in
  -*) flags=$1;;
esac
echo \#testing g0a g0b; time ${DIR}testisom  $flags  g0a g0b
echo \#testing g0a g0c; time ${DIR}testisom  $flags  g0a g0c
echo \#testing g0c g0b; time ${DIR}testisom  $flags  g0a g0b
echo \#testing g0a g1b; time ${DIR}testisom  $flags  g0a g1b
echo \#testing g1a g1b; time ${DIR}testisom  $flags  g1a g1b
echo \#testing g2a g2b; time ${DIR}testisom  $flags  g2a g2b
echo \#testing g2b g2c; time ${DIR}testisom  $flags  g2b g2c
echo \#testing g3a g3c; time ${DIR}testisom  $flags  g3a g3c
echo \#testing g3d g3b; time ${DIR}testisom  $flags  g3d g3b
echo \#testing g3d g4a; time ${DIR}testisom  $flags  g3d g4a
echo \#testing g4c g4a; time ${DIR}testisom  $flags  g4c g4a
echo \#testing g5b g5c; time ${DIR}testisom  $flags  g5b g5c
echo \#testing g5d g5a; time ${DIR}testisom  $flags  g5d g5a
echo \#testing g6b g6a; time ${DIR}testisom  $flags  g6b g6a
echo \#testing g7b g7a; time ${DIR}testisom  $flags  g7b g7a
echo \#testing g8b g8a; time ${DIR}testisom  $flags  g8b g8a
echo \#testing g8d g8c; time ${DIR}testisom  $flags  g8d g8c
echo \#testing g8d g9b; time ${DIR}testisom  $flags  g8d g9b
echo \#testing g9a g9b; time ${DIR}testisom  $flags  g9a g9b
echo \#testing g9c g9b; time ${DIR}testisom  $flags  g9c g9b
echo \#testing g10a g10b; time ${DIR}testisom  $flags  g10a g10b
echo \#testing g11a g11c; time ${DIR}testisom  $flags  g11a g11c
echo \#testing g11c g11b; time ${DIR}testisom  $flags  g11c g11b
echo \#testing g12a g12b; time ${DIR}testisom  $flags  g12a g12b
echo \#testing g13a g13b; time ${DIR}testisom  $flags  g13a g13b
echo \#testing g14a g14b; time ${DIR}testisom  $flags  g14a g14b
echo \#testing g14a g16b; time ${DIR}testisom  $flags  g14a g16b
echo \#testing g15a g15b; time ${DIR}testisom  $flags  g15a g15b
echo \#testing g17a g17b; time ${DIR}testisom  $flags  g17a g17b
echo \#testing g18a g18b; time ${DIR}testisom  $flags  g18a g18b
echo \#testing g19a g19b; time ${DIR}testisom  $flags  g19a g19b
echo \#testing g19a g20a; time ${DIR}testisom  $flags  g19a g20a
echo \#testing g22a g22b; time ${DIR}testisom  $flags  g22a g22b
echo \#testing g23a g24a; time ${DIR}testisom  $flags  g23a g24a

