Makes basic-build-test.sh tests more consistent

This contains two fixes:
 * CFLAGS symbol wasn't being exported so wasn't being used in the build
 * Absence of a clean build meant the build could be made with existing
   object code that may not have code coverage instrumentation
This commit is contained in:
Simon Butcher 2016-04-05 13:59:00 +01:00
parent a02912a764
commit d9106f3538

View File

@ -36,7 +36,8 @@ fi
# Step 1 - Make and instrumented build for code coverage
CFLAGS=' --coverage -g3 -O0 '
export CFLAGS=' --coverage -g3 -O0 '
make clean
make