summaryrefslogtreecommitdiff
path: root/tests/test.sh
blob: 4fe800ea48d7504b6ee9e3cd6f02899150eb6bde (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
#!/bin/bash
DIR=$(dirname $0)
TOC=$DIR/../toc
CFLAGS="-g -Wno-parentheses-equality"
if [ "$COMPILERS" = "" ]; then
	COMPILERS="gcc tcc clang"
fi

echo $$

compile() {
	$CC $EXTRA_CFLAGS $CFLAGS -o $DIR/$1/$1.bin $DIR/$1/$1.c || exit 1
}

do_tests() {
	valgrind -q $TOC "$DIR/$1/$1.toc" -o "$DIR/$1/$1.c" > /dev/null || exit 1
	for CC in $COMPILERS; do

		for EXTRA_CFLAGS in "-O0 -g" "-O3 -s"; do
			printf "Running test $1 with C compiler $CC and flags $EXTRA_CFLAGS... "
			compile "$1"
			cd "$DIR/$1"
			./test.sh || { printf "\x1b[91mfailed!\x1b[0m\n"; exit 1; }
			printf '\x1b[92mpassed!\x1b[0m\n'
			cd $STARTPWD
		done
	done
	
}

STARTPWD="$(pwd)"

do_tests bf
do_tests arr