indicate failure to the test harness

ok beck@
This commit is contained in:
Brent Cook 2014-07-15 17:20:09 -05:00
parent 477f1f0187
commit d3746d3a6e

View File

@ -4,6 +4,7 @@ while read -r a b;
do
if [ "$a" = "$b" ]; then
echo "FAIL: $a = $b"
return 2
else
echo "PASS: $a != $b"
fi