Commit 5a15247b6a16a9b6162e1fdd38b703d0abd422f3

Steffen Jaeckel 2015-11-12T01:34:28

improve testme.sh you can now do something like `COMPILERS="gcc-5" ./testme.sh`

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/testme.sh b/testme.sh
index 42544d9..3bba1dd 100755
--- a/testme.sh
+++ b/testme.sh
@@ -36,7 +36,7 @@ _runtest()
   timeout --foreground 120 ./test > test_$(echo ${1}${2}  | tr ' ' '_').txt || _die "running tests" $?
 }
 
-compilers=( clang gcc )
+compilers=( $COMPILERS clang gcc )
 
 echo "uname="$(uname -a)