about summary refs log tree commit diff stats
path: root/test/js/run_js_tests.sh
blob: ac531a6723e74291974ec7dda996f0868a31cc46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
if ! test "$CHA_TEST_BIN"
then	test -f ../../cha && CHA_TEST_BIN=../../cha || CHA_TEST_BIN=cha
fi
failed=0
for h in *.html
do	printf '%s\r' "$h"
	if ! "$CHA_TEST_BIN" -C config.toml "$h" | diff all.expected -
	then	failed=$(($failed+1))
		printf 'FAIL: %s\n' "$h"
	fi
done
printf '\n'
exit "$failed"