ledger/tools/regtest
2009-02-25 01:41:23 -04:00

22 lines
676 B
Bash
Executable file

#!/bin/sh
errors=0
for test in \
"-O \$cmd 0ecbb1b15e2cf3e515cc0f8533e5bb0fb2326728" \
"-B \$cmd c56a21d23a6535184e7152ee138c28974f14280c" \
"-V \$cmd c56a21d23a6535184e7152ee138c28974f14280c" \
"-G \$cmd c56a21d23a6535184e7152ee138c28974f14280c" \
"-B \$cmd c0226fafdf9e6711ac9121cf263e2d50791859cb" \
"-V \$cmd c0226fafdf9e6711ac9121cf263e2d50791859cb" \
"-G \$cmd c0226fafdf9e6711ac9121cf263e2d50791859cb"
do
echo testing: $test
python tools/confirm.py "ledger -f tools/standard.dat --args-only --columns=80 $test"
errors=`expr $errors + $?`
done
if [ $errors = 0 ]; then
echo All tests completed successfully.
fi
exit $errors