diff options
Diffstat (limited to 'tests/regtest')
-rwxr-xr-x | tests/regtest | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/regtest b/tests/regtest new file mode 100755 index 00000000..57dec8e0 --- /dev/null +++ b/tests/regtest @@ -0,0 +1,27 @@ +#!/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 |