aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/lcov.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/lcov.sh')
-rwxr-xr-xsrc/scripts/lcov.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/scripts/lcov.sh b/src/scripts/lcov.sh
deleted file mode 100755
index 9de253069..000000000
--- a/src/scripts/lcov.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-./configure.py --with-debug-info --with-coverage-info --with-bzip2 --with-lzma --with-sqlite --with-zlib --with-sqlite3
-
-make -l4 -j$(nproc) -k
-./botan-test --pkcs11-lib=/usr/lib/libsofthsm2.so --run-online-tests
-
-#LCOV_OPTIONS="--rc lcov_branch_coverage=1"
-LCOV_OPTIONS=""
-
-rm -f coverage.info coverage.info.raw
-lcov $LCOV_OPTIONS --capture --directory . --output-file coverage.info.raw
-lcov $LCOV_OPTIONS --remove coverage.info.raw '/usr/*' --output-file coverage.info
-genhtml $LCOV_OPTIONS coverage.info --output-directory lcov-out