mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-08-02 20:24:39 +02:00
Deploying to gh-pages from @ espressif/esp-protocols@d9d377133e 🚀
This commit is contained in:
405
index.html
405
index.html
@@ -1,22 +1,45 @@
|
||||
<html><body>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html class="theme-green">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<title>GCC Code Coverage Report</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<style type="text/css">
|
||||
:root {
|
||||
:root {
|
||||
font-family: sans-serif;
|
||||
--unknown_color: LightGray;
|
||||
--tab_size: 4;
|
||||
}
|
||||
|
||||
.theme-green, .theme-blue {
|
||||
--unknown_color: lightgray;
|
||||
--low_color: #FF6666;
|
||||
--medium_color: #F9FD63;
|
||||
--partial_covered_color: var(--medium_color);
|
||||
--uncovered_color: #FF8C8C;
|
||||
--warning_color: orangered;
|
||||
--notTakenBranch_color: red;
|
||||
--uncheckedDecision_color: darkorange;
|
||||
--notTakenDecision_color: red;
|
||||
--notInvokedCall_color: red;
|
||||
--excluded_color: rgb(255, 241, 229);
|
||||
}
|
||||
|
||||
.theme-green {
|
||||
--high_color: #85E485;
|
||||
--covered_color: #85E485;
|
||||
--uncovered_color: #FF8C8C;
|
||||
--takenBranch_color: Green;
|
||||
--notTakenBranch_color: Red;
|
||||
--takenBranch_color: green;
|
||||
--takenDecision_color: green;
|
||||
--invokedCall_color: green;
|
||||
}
|
||||
|
||||
.theme-blue {
|
||||
--high_color: #66B4FF;
|
||||
--covered_color: #66B4Ff;
|
||||
--takenBranch_color: blue;
|
||||
--takenDecision_color: blue;
|
||||
--invokedCall_color: blue;
|
||||
}
|
||||
|
||||
body
|
||||
@@ -102,6 +125,11 @@ table.legend td.legend
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
table.legend td.warning_text
|
||||
{
|
||||
color: var(--warning_color);
|
||||
}
|
||||
|
||||
table.coverage td,
|
||||
table.coverage th
|
||||
{
|
||||
@@ -149,7 +177,8 @@ table.legend span.coverage-high
|
||||
}
|
||||
|
||||
table.legend span.coverage-unknown,
|
||||
table.coverage td.coverage-unknown
|
||||
table.coverage td.coverage-unknown,
|
||||
table.file-list td.coverage-unknow
|
||||
{
|
||||
background-color: var(--unknown_color) !important;
|
||||
}
|
||||
@@ -157,24 +186,26 @@ table.coverage td.coverage-unknown
|
||||
table.legend span.coverage-none,
|
||||
table.legend span.coverage-low,
|
||||
table.coverage td.coverage-none,
|
||||
table.coverage td.coverage-low
|
||||
table.coverage td.coverage-low,
|
||||
table.file-list td.coverage-none,
|
||||
table.file-list td.coverage-low
|
||||
{
|
||||
background-color: var(--low_color) !important;
|
||||
}
|
||||
|
||||
table.legend span.coverage-medium,
|
||||
table.coverage td.coverage-medium
|
||||
table.coverage td.coverage-medium,
|
||||
table.file-list td.coverage-medium
|
||||
{
|
||||
background-color: var(--medium_color) !important;
|
||||
}
|
||||
|
||||
table.legend span.coverage-high,
|
||||
table.coverage td.coverage-high
|
||||
table.coverage td.coverage-high,
|
||||
table.file-list td.coverage-high
|
||||
{
|
||||
background-color: var(--high_color) !important;
|
||||
}
|
||||
|
||||
|
||||
/*** End of Summary formats ***/
|
||||
/*** Meter formats ***/
|
||||
|
||||
@@ -309,13 +340,25 @@ span.coveredLine
|
||||
background-color: var(--covered_color) !important;
|
||||
}
|
||||
|
||||
td.partialCoveredLine,
|
||||
span.partialCoveredLine
|
||||
{
|
||||
background-color: var(--partial_covered_color) !important;
|
||||
}
|
||||
|
||||
td.uncoveredLine,
|
||||
span.uncoveredLine
|
||||
{
|
||||
background-color: var(--uncovered_color) !important;
|
||||
}
|
||||
|
||||
.linebranch, .linecount
|
||||
td.excludedLine,
|
||||
span.excludedLine
|
||||
{
|
||||
background-color: var(--excluded_color) !important;
|
||||
}
|
||||
|
||||
.linebranch, .linedecision, .linecall, .linecount
|
||||
{
|
||||
font-family: monospace;
|
||||
border-right: 1px gray solid;
|
||||
@@ -323,15 +366,16 @@ span.uncoveredLine
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.linebranchDetails
|
||||
|
||||
.linebranchDetails, .linedecisionDetails, .linecallDetails
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
.linebranchSummary
|
||||
.linebranchSummary, .linedecisionSummary, .linecallSummary
|
||||
{
|
||||
cursor: help;
|
||||
}
|
||||
.linebranchContents
|
||||
.linebranchContents, .linedecisionContents, .linecallContents
|
||||
{
|
||||
font-family: sans-serif;
|
||||
font-size: small;
|
||||
@@ -355,6 +399,31 @@ span.uncoveredLine
|
||||
color: var(--notTakenBranch_color) !important;
|
||||
}
|
||||
|
||||
.takenDecision
|
||||
{
|
||||
color: var(--takenDecision_color) !important;
|
||||
}
|
||||
|
||||
.notTakenDecision
|
||||
{
|
||||
color: var(--notTakenDecision_color) !important;
|
||||
}
|
||||
|
||||
.uncheckedDecision
|
||||
{
|
||||
color: var(--uncheckedDecision_color) !important;
|
||||
}
|
||||
|
||||
.invokedCall
|
||||
{
|
||||
color: var(--invokedCall_color) !important;
|
||||
}
|
||||
|
||||
.notInvokedCall
|
||||
{
|
||||
color: var(--notInvokedCall_color) !important;
|
||||
}
|
||||
|
||||
.src
|
||||
{
|
||||
padding-left: 12px;
|
||||
@@ -368,7 +437,10 @@ span.uncoveredLine
|
||||
}
|
||||
|
||||
span.takenBranch,
|
||||
span.notTakenBranch
|
||||
span.notTakenBranch,
|
||||
span.takenDecision,
|
||||
span.notTakenDecision,
|
||||
span.uncheckedDecision
|
||||
{
|
||||
font-family: monospace;
|
||||
font-weight: bold;
|
||||
@@ -381,6 +453,31 @@ pre
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.listOfFunctions td, .listOfFunctions th {
|
||||
padding: 0 10px;
|
||||
}
|
||||
.listOfFunctions th
|
||||
{
|
||||
text-align: center;
|
||||
color: white;
|
||||
background-color: SteelBlue;
|
||||
}
|
||||
.listOfFunctions tr > td {
|
||||
background: aliceblue;
|
||||
}
|
||||
.listOfFunctions tr:nth-child(even) > td {
|
||||
background: LightSteelBlue
|
||||
}
|
||||
.listOfFunctions tr:hover > td
|
||||
{
|
||||
background-color: #ddd;
|
||||
}
|
||||
.listOfFunctions tr > td > a
|
||||
{
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.source-line
|
||||
{
|
||||
height : 15px;
|
||||
@@ -457,6 +554,7 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
.cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
|
||||
.gd { color: #A00000 } /* Generic.Deleted */
|
||||
.ge { font-style: italic } /* Generic.Emph */
|
||||
.ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
||||
.gr { color: #E40000 } /* Generic.Error */
|
||||
.gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.gi { color: #008400 } /* Generic.Inserted */
|
||||
@@ -516,6 +614,7 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<h1>GCC Code Coverage Report</h1>
|
||||
|
||||
<hr/>
|
||||
@@ -525,18 +624,18 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
<table class="legend">
|
||||
<tr>
|
||||
<th scope="row">Directory:</th>
|
||||
<td>src/</td>
|
||||
<td>./</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Date:</th>
|
||||
<td>2024-01-26 16:37:23</td>
|
||||
<td>2024-02-02 13:20:14</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Legend:</th>
|
||||
<th scope="row">Coverage:</th>
|
||||
<td class="legend">
|
||||
<span class="coverage-low">low: >= 0%</span>
|
||||
<span class="coverage-medium">medium: >= 75.0%</span>
|
||||
<span class="coverage-high">high: >= 90.0%</span>
|
||||
<span class="coverage-low">low: ≥ 0%</span>
|
||||
<span class="coverage-medium">medium: ≥ 75.0%</span>
|
||||
<span class="coverage-high">high: ≥ 90.0%</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -552,9 +651,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Lines:</th>
|
||||
<td>605</td>
|
||||
<td>994</td>
|
||||
<td class="coverage-low">60.9%</td>
|
||||
<td>735</td>
|
||||
<td>1198</td>
|
||||
<td class="coverage-low">61.4%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Functions:</th>
|
||||
<td>0</td>
|
||||
<td>0</td>
|
||||
<td class="coverage-unknown">-%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Branches:</th>
|
||||
@@ -567,28 +672,198 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<table class="file-list">
|
||||
<col/>
|
||||
<colgroup span="3"/>
|
||||
<colgroup span="2"/>
|
||||
<colgroup span="2"/>
|
||||
|
||||
<tr>
|
||||
<th scope="col">File</th>
|
||||
<th scope="colgroup" colspan=3>Lines</th>
|
||||
<th scope="colgroup" colspan=2>Functions</th>
|
||||
<th scope="colgroup" colspan=2>Branches</th>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_api.cpp
|
||||
include/cxx_include/esp_modem_buffer.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-high" min="0" max="100" value="100.0" title="100.0%">100.0</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-high">100.0%</td>
|
||||
<td class="CoverValue line-coverage coverage-high">15 / 15</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_cmux.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="66.7" title="66.7%">66.7</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">66.7%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">8 / 12</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_dce.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-high" min="0" max="100" value="100.0" title="100.0%">100.0</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-high">100.0%</td>
|
||||
<td class="CoverValue line-coverage coverage-high">5 / 5</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_dce_factory.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-medium" min="0" max="100" value="86.5" title="86.5%">86.5</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">86.5%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">32 / 37</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_dce_module.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="65.2" title="65.2%">65.2</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">65.2%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">15 / 23</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_dte.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-medium" min="0" max="100" value="77.3" title="77.3%">77.3</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">77.3%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">17 / 22</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_exception.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="16.7" title="16.7%">16.7</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">16.7%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">3 / 18</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_primitives.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-high" min="0" max="100" value="100.0" title="100.0%">100.0</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-high">100.0%</td>
|
||||
<td class="CoverValue line-coverage coverage-high">5 / 5</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_terminal.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="42.9" title="42.9%">42.9</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">42.9%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">3 / 7</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
include/cxx_include/esp_modem_types.hpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-medium" min="0" max="100" value="83.3" title="83.3%">83.3</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">83.3%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">5 / 6</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
src/esp_modem_api.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="41.2" title="41.2%">41.2</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">41.2%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">7 / 17</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -596,13 +871,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_cmux.cpp
|
||||
src/esp_modem_cmux.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-medium" min="0" max="100" value="78.3" title="78.3%">78.3</meter>
|
||||
<meter class="coverage-medium" min="0" max="100" value="77.0" title="77.0%">77.0</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">78.3%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">206 / 263</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">77.0%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">207 / 269</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -610,13 +887,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_command_library.cpp
|
||||
src/esp_modem_command_library.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="51.3" title="51.3%">51.3</meter>
|
||||
<meter class="coverage-low" min="0" max="100" value="51.4" title="51.4%">51.4</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">51.3%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">156 / 304</td>
|
||||
<td class="CoverValue line-coverage coverage-low">51.4%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">165 / 321</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -624,13 +903,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_dce.cpp
|
||||
src/esp_modem_dce.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-medium" min="0" max="100" value="87.5" title="87.5%">87.5</meter>
|
||||
<meter class="coverage-medium" min="0" max="100" value="87.0" title="87.0%">87.0</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">87.5%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">77 / 88</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">87.0%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">80 / 92</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -638,13 +919,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_dte.cpp
|
||||
src/esp_modem_dte.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="58.7" title="58.7%">58.7</meter>
|
||||
<meter class="coverage-low" min="0" max="100" value="58.4" title="58.4%">58.4</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">58.7%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">111 / 189</td>
|
||||
<td class="CoverValue line-coverage coverage-low">58.4%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">115 / 197</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -652,13 +935,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_modules.cpp
|
||||
src/esp_modem_modules.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="23.8" title="23.8%">23.8</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">23.8%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">5 / 21</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -666,13 +951,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_netif_linux.cpp
|
||||
src/esp_modem_netif_linux.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-low" min="0" max="100" value="56.0" title="56.0%">56.0</meter>
|
||||
<meter class="coverage-low" min="0" max="100" value="53.6" title="53.6%">53.6</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-low">56.0%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">14 / 25</td>
|
||||
<td class="CoverValue line-coverage coverage-low">53.6%</td>
|
||||
<td class="CoverValue line-coverage coverage-low">15 / 28</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -680,13 +967,15 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_primitives_linux.cpp
|
||||
src/esp_modem_primitives_linux.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-medium" min="0" max="100" value="80.6" title="80.6%">80.6</meter>
|
||||
<meter class="coverage-medium" min="0" max="100" value="76.7" title="76.7%">76.7</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">80.6%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">29 / 36</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">76.7%</td>
|
||||
<td class="CoverValue line-coverage coverage-medium">33 / 43</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
@@ -694,23 +983,25 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
|
||||
<tr>
|
||||
<th scope="row">
|
||||
esp_modem_term_fs.cpp
|
||||
src/esp_modem_term_fs.cpp
|
||||
</th>
|
||||
<td>
|
||||
<meter class="coverage-none" min="0" max="100" value="0.0" title="0.0%">0.0</meter>
|
||||
</td>
|
||||
<td class="CoverValue line-coverage coverage-none">0.0%</td>
|
||||
<td class="CoverValue line-coverage coverage-none">0 / 51</td>
|
||||
<td class="CoverValue line-coverage coverage-none">0 / 60</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue function-coverage coverage-unknown">0 / 0</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">-%</td>
|
||||
<td class="CoverValue branch-coverage coverage-unknown">0 / 0</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<hr/>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
Generated by: <a href="http://gcovr.com">GCOVR (Version 5.0)</a>
|
||||
Generated by: <a href="http://gcovr.com/en/7.0">GCOVR (Version 7.0)</a>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1343,7 +1634,7 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Date:</th>
|
||||
<td>2024-01-26 16:36:40</td>
|
||||
<td>2024-02-05 09:22:31</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Coverage:</th>
|
||||
|
Reference in New Issue
Block a user