summaryrefslogtreecommitdiff
path: root/tests/stepgen.2/checkresult
blob: 809e8044c403fd0dddc2e74b01dd1dff6ebc58f3 (plain)
1
2
3
4
5
6
7
#!/bin/bash
COUNT=0
while read i j; do
	if [ $j  -eq 1 ]; then COUNT=$((COUNT+1)); fi
done < $1

test $COUNT -eq 1280