ode.test 258 B

1234567891011121314
  1. #!/bin/sh
  2. ../ode/ode <$SRCDIR/../ode-examples/dynamo.ode >ode.out
  3. # work around line end problems in installations with DJGPP under DOS
  4. tr -d '\015' < ode.out > ode.dos
  5. if cmp -s $SRCDIR/ode.xout ode.dos
  6. then retval=0;
  7. else retval=1;
  8. fi;
  9. exit $retval