summaryrefslogtreecommitdiff
path: root/common/scripts/gcov-collect-results.sh
blob: 3a1289966fc8ba8553e3aabad9acd03f3fe27742 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

lcov -c -o coverage.info && echo "LAVA gcov-read: pass" || echo "LAVA gcov-read: fail"

genhtml coverage.info -o gcov_test_coverage && echo "LAVA gcov-html: pass" || echo "LAVA gcov-html: fail"
tar czf gcov-results.tar.gz gcov_test_coverage
if [ -f gcov-results.tar.gz ]; then
    lava-test-run-attach gcov-results.tar.gz application/x-gzip
fi