blob: 57dec8e040d0d2ff27e96cfc36846fa23a25afa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
|