blob: a71ed37edba3be3b1056cbda4bf6cee778a38a97 (
plain)
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
32
33
34
35
36
37
38
39
40
41
|
#!/bin/sh
: ${CCQBE:=./cproc-qbe}
if [ $# = 0 ] ; then
set -- test/*.c
fi
numfail=0
got=$(mktemp)
trap 'rm "$got"' EXIT
for test ; do
name=${test%.c}
case $name in
*+*) arch=${name##*+} ;;
*) arch=x86_64 ;;
esac
if [ -f "$name.qbe" ] ; then
want=$name.qbe
set -- $CCQBE -t $arch -o "$got" "$test"
elif [ -f "$name.pp" ] ; then
want=$name.pp
set -- $CCQBE -t $arch -E -o "$got" "$test"
else
echo "invalid test '$test'" >&2
set -- false
fi
if "$@" && diff -Nu "$want" "$got" ; then
result="PASS"
else
result="FAIL"
numfail=$((numfail + 1))
fi
echo "[$result] $test" >&2
done
if [ "$numfail" -gt 0 ] ; then
printf "%d test(s) failed\n" "$numfail"
exit 1
fi
|