increase coverage by running 'sizes' and 'constants'

This commit is contained in:
Steffen Jaeckel 2016-01-26 21:57:42 +01:00
parent 1c6c02e18d
commit da3ade0807

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash -e
if [ -z "$(echo $CC | grep "gcc")" ]; then
echo "no gcc detected, early exit success"
@ -17,6 +17,9 @@ else
exit 1
fi
./sizes
./constants
cpp-coveralls -e 'demos/' -e 'testprof/' -e 'notes/' -e 'src/headers/'
exit 0