Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions run_ut.sh
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,13 @@ make || { echo "ERROR: STBService Thunder gtest build failed"; exit 1; }
./stbservice_thunder_gtest || { echo "ERROR: STBService Thunder gtest execution failed"; exit 1; }
echo "********************"

cd $TOP_DIR/src/hostif/profiles/DeviceInfo/
gcov -b -c devieInfo_gtest-Device_DeviceInfo.gcno
cat Device_DeviceInfo.cpp.gcov

cd $TOP_DIR
Comment on lines +184 to 188


if [ "$ENABLE_COV" = true ]; then
lcov --capture --directory . --output-file coverage.info
lcov --remove coverage.info '/usr/*' '*/gtest/*' '*/mocks/*' --output-file filtered.info
Expand Down
Loading