#!/bin/csh -f
setenv TEST_GETENV "foo bar baz"
./remind -e -dxtev ./test.rem 16 feb 1991 > ./test.out
cmp -s ./test.out ./test.cmp
if ($status == 0) then
   echo "Remind:  Acceptance test PASSED"
   exit 0
else
   echo "Remind:  Acceptance test FAILED"
   echo ""
   echo "Examine the file test.out to see where it differs from the"
   echo "reference file test.cmp."
   exit 1
endif
