For now build tests just check the core.

This commit is contained in:
Alex Shinn 2013-06-17 22:27:32 +09:00
parent b3ad71cb90
commit 11b7a05308

View file

@ -31,7 +31,7 @@ for opts in $(cat ${BUILDDIR}/build-opts.txt); do
$MAKE cleaner 2>&1 >/dev/null
if $MAKE -j 8 "$vars" $opts chibi-scheme 2>&1 >${BUILDDIR}/build${i}-make.out; then
sync
if $MAKE test 2>&1 | tee ${BUILDDIR}/build${i}-test.out \
if $MAKE test-r5rs 2>&1 | tee ${BUILDDIR}/build${i}-test.out \
| grep -q -E 'FAIL|ERROR'; then
echo "[FAIL] ${i}: tests failed with $opts"
FAILURES=$((FAILURES + 1))