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