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

fail=0
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 < version.data

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

exit $fail