You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/README.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,12 +102,9 @@ IMG_MGR RSA2048 Test completed successfully!
102
102
103
103
The test suite supports code coverage analysis using gcovr. To generate coverage reports:
104
104
105
-
### Prerequisites
106
-
Install gcovr if not already installed:
105
+
**Note**: The coverage directory must exist before generating reports. The `make coverage` target creates this automatically, but if running gcovr manually, create it first with:
107
106
```bash
108
-
pip install gcovr
109
-
# or
110
-
pip3 install gcovr
107
+
mkdir -p ../coverage
111
108
```
112
109
113
110
### Running Coverage
@@ -137,8 +134,9 @@ make COVERAGE=1 DEBUG=1
137
134
# Run tests
138
135
make run
139
136
140
-
#Generate coverage report (from repository root)
137
+
#Create coverage directory and generate report (from repository root)
0 commit comments