From 0bab6e867441c4d9d62b436e0aac48b7dc0096a3 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 31 Jan 2009 06:00:31 -0400 Subject: Added a tools/ subdirectory, with various maintainer related files. --- tools/regtest | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 tools/regtest (limited to 'tools/regtest') diff --git a/tools/regtest b/tools/regtest new file mode 100755 index 00000000..6a59c39f --- /dev/null +++ b/tools/regtest @@ -0,0 +1,27 @@ +#!/bin/sh + +errors=0 + +if [ ! -f tools/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 -- cgit v1.2.3