racket/.github/scripts/test.sh
Paulo Matos e01fd1a5a7 Revert "Speed up solo chez testing (#3322)"
This reverts commit 8e2c6c966a.

There is a test failure on i386 and an out of memory problem on
arm64, so I am reverting this until I get those fixed.
2020-07-31 06:28:02 +02:00

23 lines
512 B
Bash
Executable File

#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
runmats() {
echo make allxhelp "$@"
make -C ${MACH}/mats allxhelp "$@" 2>&1 | tee -a Make.out | grep '^matting '
}
# Split these out so that we get output every 10 minutes on Windows builds.
runmats o=0
runmats o=0 cp0=t
runmats o=3
runmats o=3 cp0=t
runmats o=3 cp0=t eval=interpret
if [ -f ${MACH}/mats/summary ]; then
cat ${MACH}/mats/summary
diff -q ${DIR}/summary ${MACH}/mats/summary
exit $?
else
exit 1
fi