diff options
Diffstat (limited to 'test/test_coverage.sh')
-rwxr-xr-x | test/test_coverage.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/test_coverage.sh b/test/test_coverage.sh deleted file mode 100755 index 045f136..0000000 --- a/test/test_coverage.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -# Run this script (from the directory it's in) after building -# (with waf configure --debug --test) to run the -# unit tests and generate a code coverage report - -cd ../build/default - -lcov -d ./src -z -./test/slv2_test -lcov -d ./src -d ./test -b .. -c > coverage.lcov -mkdir -p ./coverage -genhtml -o coverage coverage.lcov -echo "Report written to:" -echo "../build/default/coverage/index.html" - |