#! /bin/sh
# This script takes no arguments.

trap 'rm -fr $tmpfiles' 1 2 3 15

LANGUAGE=
LC_ALL=
LC_MESSAGES=
LANG=
export LANGUAGE LC_ALL LC_MESSAGES LANG


tmpfiles="$tmpfiles hello-test3.out"
: ${HEBCAL=hebcal}
${HEBCAL} 4 2012 > hebcal-test3.out


: ${DIFF=diff}
${DIFF} ${srcdir}/hebcal-test3.ok hebcal-test3.out
result=$?

rm -f $tmpfiles

exit $result

# hebcal ends here
