Browse Source

increase coverage by running 'sizes' and 'constants'

Steffen Jaeckel 9 years ago
parent
commit
da3ade0807
1 changed files with 4 additions and 1 deletions
  1. 4 1
      coverage.sh

+ 4 - 1
coverage.sh

@@ -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