make clean
make BUILD_DEBUG=1 all test
make clean
make BUILD_GCOV=1 BUILD_GPROF=1 all test
make check-gcov-quick
make check-gcov-full
make check-lcov
PROGRAM="./.build/t/canary"
$PROGRAM
gprof $PROGRAM
Need to make sure that ASAN is disabled.
Run Valgrind on all the test programs:
make check-valgrind
or on an individual program
PROGRAM="./.build/t/canary"
make BUILD_ENABLE_ASAN=0 all test
valgrind --leak-check=full $PROGRAM