ledger/tests/regtest
2008-04-13 02:41:32 -04:00

27 lines
430 B
Bash
Executable file

#!/bin/sh
errors=0
if [ ! -f utils/standard.dat ]; then
exit 0
fi
for test in \
"-O nrl:checking" \
"-O ^expenses" \
"-B 401" \
"-V 401" \
"-G 401" \
"-B ira" \
"-V ira" \
"-G ira" \
"-B retire" \
"-V retire" \
"-G retire"
do
echo testing: $test
python tests/confirm.py $test
errors=`expr $errors + $?`
done
exit $errors