#!/bin/sh

echo 0 1 0.5 0.75 -0.25 0 | ../spline/spline -a -T 1 -n 120 \
	--precision 5 -p >spline.out

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

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

exit $retval
