Files
blis/gtestsuite/codecov.sh
Edward Smyth 7e50ba669b Code cleanup: No newline at end of file
Some text files were missing a newline at the end of the file.
One has been added.

Also correct file format of windows/tests/inputs.yaml, which
was missed in commit 0f0277e104

AMD-Internal: [CPUPL-2870]
Change-Id: Icb83a4a27033dc0ff325cb84a1cf399e953ec549
2023-04-21 10:02:48 -04:00

13 lines
296 B
Bash
Executable File

#!/bin/bash
echo "Code Coverage for BLIS"
echo "obj_dir_path : $1"
echo "out_dir_name : $2"
#$1 : obj_dir_path
#$2 : out_dir_name
lcov --capture --directory $1 --output-file $2.info
lcov --remove $2.info -o $2_filtered.info '/usr/*' '/*/_deps/*'
genhtml $2_filtered.info --output-directory $2