Lines Matching refs:ret
26 ret=0
27 $CHECKZONE -i local example $db > test.out.$n 2>&1 || ret=1
29 if [ $ret != 0 ]; then echo "I:failed"; fi
30 status=`expr $status + $ret`
36 ret=0
37 $CHECKZONE -i local example $db > test.out.$n 2>&1 && ret=1
39 if [ $ret != 0 ]; then echo "I:failed"; fi
40 status=`expr $status + $ret`
44 ret=0
45 $CHECKZONE example zones/spf.db > test.out1.$n 2>&1 || ret=1
46 $CHECKZONE -T ignore example zones/spf.db > test.out2.$n 2>&1 || ret=1
47 grep "'x.example' found SPF/TXT" test.out1.$n > /dev/null || ret=1
48 grep "'y.example' found SPF/SPF" test.out1.$n > /dev/null || ret=1
49 grep "'example' found SPF/" test.out1.$n > /dev/null && ret=1
50 grep "'x.example' found SPF/" test.out2.$n > /dev/null && ret=1
51 grep "'y.example' found SPF/" test.out2.$n > /dev/null && ret=1
52 grep "'example' found SPF/" test.out2.$n > /dev/null && ret=1
54 if [ $ret != 0 ]; then echo "I:failed"; fi
55 status=`expr $status + $ret`