-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
GHA CI [bot]
committed
Oct 26, 2024
0 parents
commit 7c8dff1
Showing
5 changed files
with
3,939 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<html> | ||
<head> | ||
<title>LibreCAD - scan-build results</title> | ||
<link type="text/css" rel="stylesheet" href="scanview.css"/> | ||
<script src="sorttable.js"></script> | ||
<script language='javascript' type="text/javascript"> | ||
function SetDisplay(RowClass, DisplayVal) | ||
{ | ||
var Rows = document.getElementsByTagName("tr"); | ||
for ( var i = 0 ; i < Rows.length; ++i ) { | ||
if (Rows[i].className == RowClass) { | ||
Rows[i].style.display = DisplayVal; | ||
} | ||
} | ||
} | ||
|
||
function CopyCheckedStateToCheckButtons(SummaryCheckButton) { | ||
var Inputs = document.getElementsByTagName("input"); | ||
for ( var i = 0 ; i < Inputs.length; ++i ) { | ||
if (Inputs[i].type == "checkbox") { | ||
if(Inputs[i] != SummaryCheckButton) { | ||
Inputs[i].checked = SummaryCheckButton.checked; | ||
Inputs[i].onclick(); | ||
} | ||
} | ||
} | ||
} | ||
|
||
function returnObjById( id ) { | ||
if (document.getElementById) | ||
var returnVar = document.getElementById(id); | ||
else if (document.all) | ||
var returnVar = document.all[id]; | ||
else if (document.layers) | ||
var returnVar = document.layers[id]; | ||
return returnVar; | ||
} | ||
|
||
var NumUnchecked = 0; | ||
|
||
function ToggleDisplay(CheckButton, ClassName) { | ||
if (CheckButton.checked) { | ||
SetDisplay(ClassName, ""); | ||
if (--NumUnchecked == 0) { | ||
returnObjById("AllBugsCheck").checked = true; | ||
} | ||
} | ||
else { | ||
SetDisplay(ClassName, "none"); | ||
NumUnchecked++; | ||
returnObjById("AllBugsCheck").checked = false; | ||
} | ||
} | ||
</script> | ||
<!-- SUMMARYENDHEAD --> | ||
</head> | ||
<body> | ||
<h1>LibreCAD - scan-build results</h1> | ||
|
||
<table> | ||
<tr><th>User:</th><td>runner@fv-az1154-74</td></tr> | ||
<tr><th>Working Directory:</th><td>/home/runner/work/LibreCAD/LibreCAD</td></tr> | ||
<tr><th>Command Line:</th><td>make release -j4</td></tr> | ||
<tr><th>Clang Version:</th><td>Ubuntu clang version 11.0.0-2~ubuntu20.04.1 | ||
</td></tr> | ||
<tr><th>Date:</th><td>Sat Oct 26 12:34:28 2024</td></tr> | ||
</table> | ||
<h2>Bug Summary</h2><table> | ||
<thead><tr><td>Bug Type</td><td>Quantity</td><td class="sorttable_nosort">Display?</td></tr></thead> | ||
<tr style="font-weight:bold"><td class="SUMM_DESC">All Bugs</td><td class="Q">2</td><td><center><input type="checkbox" id="AllBugsCheck" onClick="CopyCheckedStateToCheckButtons(this);" checked/></center></td></tr> | ||
<tr><th>Dead store</th><th colspan=2></th></tr> | ||
<tr><td class="SUMM_DESC">Dead assignment</td><td class="Q">2</td><td><center><input type="checkbox" onClick="ToggleDisplay(this,'bt_dead_store_dead_assignment');" checked/></center></td></tr> | ||
</table> | ||
<h2>Reports</h2> | ||
|
||
<table class="sortable" style="table-layout:automatic"> | ||
<thead><tr> | ||
<td>Bug Group</td> | ||
<td class="sorttable_sorted">Bug Type<span id="sorttable_sortfwdind"> ▾</span></td> | ||
<td>File</td> | ||
<td>Function/Method</td> | ||
<td class="Q">Line</td> | ||
<td class="Q">Path Length</td> | ||
<td class="sorttable_nosort"></td> | ||
<!-- REPORTBUGCOL --> | ||
</tr></thead> | ||
<tbody> | ||
<tr class="bt_dead_store_dead_assignment"><td class="DESC">Dead store</td><td class="DESC">Dead assignment</td><td>dwgreader.cpp</td><td class="DESC">readDwgTables</td><td class="Q">687</td><td class="Q">1</td><td><a href="report-77bd70.html#EndPath">View Report</a></td> | ||
<!-- REPORTBUG id="report-77bd70.html" --> | ||
</tr> | ||
<tr class="bt_dead_store_dead_assignment"><td class="DESC">Dead store</td><td class="DESC">Dead assignment</td><td>dwgreader.cpp</td><td class="DESC">readDwgTables</td><td class="Q">685</td><td class="Q">1</td><td><a href="report-ef05b6.html#EndPath">View Report</a></td> | ||
<!-- REPORTBUG id="report-ef05b6.html" --> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
</body></html> |
Oops, something went wrong.