summaryrefslogtreecommitdiff
path: root/test/solver.sh
blob: bc230c68163af0f7df1974513407617a6c895bd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

get_block() {
	awk '/^@'$1'/{p=1;next} /^@/{p=0} p{print}'
}

APK_TEST="../src/apk-test"
TEST_TO_RUN="$@"

fail=0
pass=0
for test in ${TEST_TO_RUN:-*.test}; do
	get_block ARGS < $test | xargs $APK_TEST &> .$test.got

	if ! get_block EXPECT < $test | cmp .$test.got &> /dev/null; then
		fail=$((fail+1))
		echo "FAIL: $test"
		get_block EXPECT < $test | diff -ru - .$test.got
	else
		pass=$((pass+1))
	fi
done

total=$((fail+pass))
if [ "$fail" != "0" ]; then
	echo "FAIL: $fail of $total test cases failed"
else
	echo "OK: all $total solver test cases passed"
fi

exit $fail