mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +00:00
10 lines
456 B
Bash
Executable File
10 lines
456 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# collect traces from auto-pts run (exclude chipset/zephyr)
|
|
lcov --capture --rc lcov_branch_coverage=1 --directory . --exclude "/Applications/*" --exclude "/Library/*" --exclude "/usr/*" --exclude "*/test/*" --exclude "*/chipset/*" --output-file coverage-pts.info
|
|
|
|
# optional: download unit tests, merge and filter results like in ../Makefile
|
|
|
|
# generate html output
|
|
genhtml coverage-pts.info --branch-coverage --output-directory coverage-pts
|