#!/bin/sh

../ode/ode <$SRCDIR/../ode-examples/dynamo.ode >ode.out

# work around line end problems in installations with DJGPP under DOS
tr -d '\015' < ode.out > ode.dos

if cmp -s $SRCDIR/ode.xout ode.dos
	then retval=0;
	else retval=1;
	fi;

exit $retval
