blob: 6a59c39f081dabb498381b16e47961d2d7a38574 (
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 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
|