aboutsummaryrefslogtreecommitdiffstats
path: root/test/version.sh
blob: 18199a6f664fdab7737c759ba3d952ba575b97df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

fail=0
cat version.data | while read a result b rest ; do
	output="$(../src/apk version -t "$a" "$b")"
	if [ "$output" != "$result" ] ; then
		echo "$a $result $b, but got $output"
		fail=$(($fail+1))
	fi
done

if [ "$fail" == "0" ]; then
	echo "OK: version checking works"
fi

exit $fail