#!/bin/sh
#
# Bourne Shell script to run Maple V tests and check results.  This script
# must be run from the Maple bin directory as ./TestMaple.

T=../test/l00
head -1 $T
./maple -s -t < $T | tee tmp > $T.out
tail -1 tmp
if diff -b $T.r $T.out
then	echo "No differences encountered"
	rm $T.out
fi
rm tmp temp temp.m
