4 lines
120 B
Bash
4 lines
120 B
Bash
#!/bin/bash
|
|
lcov --capture --directory . --output-file coverage.info
|
|
genhtml coverage.info --output-directory _coverage
|