Commit 6c536e4bd00c04423331b206fb27e35c45836e18

Tom St Denis 2015-11-25T09:41:58

Speed up testing and temporarily disable clang testing

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/testme.sh b/testme.sh
index 3bba1dd..9a9fdbd 100755
--- a/testme.sh
+++ b/testme.sh
@@ -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)