Speed up testing and temporarily disable clang testing

This commit is contained in:
Tom St Denis 2015-11-25 09:41:58 -05:00
parent 10ba45b717
commit 6c536e4bd0
1 changed files with 3 additions and 3 deletions

View File

@ -31,12 +31,12 @@ _runtest()
{
echo -ne " Compile $1 $2"
make clean > /dev/null
CC="$1" CFLAGS="$2 $TEST_CFLAGS" make test_standalone $MAKE_OPTIONS > /dev/null 2>test_errors.txt
CC="$1" CFLAGS="$2 $TEST_CFLAGS" make -j8 test_standalone $MAKE_OPTIONS > /dev/null 2>test_errors.txt
echo -e "\rRun test $1 $2"
timeout --foreground 120 ./test > test_$(echo ${1}${2} | tr ' ' '_').txt || _die "running tests" $?
timeout --foreground 90 ./test > test_$(echo ${1}${2} | tr ' ' '_').txt || _die "running tests" $?
}
compilers=( $COMPILERS clang gcc )
compilers=( $COMPILERS gcc )
echo "uname="$(uname -a)