<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems-testing (2011-09-19)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
<font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-09-19 Pawel Zagorski <pzagor@agh.edu.pl>
PR 1909/testing
* DesiredSymbols.cc, ReportsHtml.cc: Fixed Taken / Not taken
information to be shown in separate sortable and filterable collumns
in branch report. Minor code aligment fix in DesiredSymbols.c
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/covoar/ChangeLog.diff?r1=text&tr1=1.24&r2=text&tr2=1.25&diff_format=h">M</a></td><td width='1%'>1.25</td><td width='100%'>covoar/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/covoar/DesiredSymbols.cc.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>covoar/DesiredSymbols.cc</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/covoar/ReportsHtml.cc.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>covoar/ReportsHtml.cc</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/covoar/ChangeLog:1.24 rtems-testing/covoar/ChangeLog:1.25
--- rtems-testing/covoar/ChangeLog:1.24 Thu Sep 1 17:32:29 2011
+++ rtems-testing/covoar/ChangeLog Mon Sep 19 19:34:20 2011
</font><font color='#997700'>@@ -1,3 +1,10 @@
</font><font color='#000088'>+2011-09-19 Pawel Zagorski <pzagor@agh.edu.pl>
+
+ PR 1909/testing
+ * DesiredSymbols.cc, ReportsHtml.cc: Fixed Taken / Not taken
+ information to be shown in separate sortable and filterable collumns
+ in branch report. Minor code aligment fix in DesiredSymbols.c
+
</font> 2011-09-01 Pawel Zagorski <pzagor@agh.edu.pl>
PR 1909/testing
<font color='#006600'>diff -u rtems-testing/covoar/DesiredSymbols.cc:1.9 rtems-testing/covoar/DesiredSymbols.cc:1.10
--- rtems-testing/covoar/DesiredSymbols.cc:1.9 Wed Aug 31 15:44:25 2011
+++ rtems-testing/covoar/DesiredSymbols.cc Mon Sep 19 19:34:20 2011
</font><font color='#997700'>@@ -34,7 +34,7 @@
</font> const char* const symbolsFile
)
{
<font color='#880000'>- int cStatus;
</font><font color='#000088'>+ int cStatus;
</font> bool done = false;
FILE* sFile;
SymbolInformation* symInfo;
<font color='#006600'>diff -u rtems-testing/covoar/ReportsHtml.cc:1.5 rtems-testing/covoar/ReportsHtml.cc:1.6
--- rtems-testing/covoar/ReportsHtml.cc:1.5 Thu Sep 1 17:32:29 2011
+++ rtems-testing/covoar/ReportsHtml.cc Mon Sep 19 19:34:20 2011
</font><font color='#997700'>@@ -203,7 +203,8 @@
</font> "<th class=\"table-filterable table-sortable:default\" align=\"left\">File</th>\n"
"<th class=\"table-sortable:numeric\" align=\"left\">Size </br>Bytes</th>\n"
"<th class=\"table-sortable:default\" align=\"left\">Reason</th>\n"
<font color='#880000'>- "<th class=\"table-sortable:default\" align=\"left\">Taken / Not Taken</th>\n"
</font><font color='#000088'>+ "<th class=\"table-filterable table-sortable:default\" align=\"left\">Taken</th>\n"
+ "<th class=\"table-filterable table-sortable:default\" align=\"left\">Not Taken</th>\n"
</font> "<th class=\"table-filterable table-sortable:default\" align=\"left\">Classification</th>\n"
"<th class=\"table-sortable:default\" align=\"left\">Explanation</th>\n"
"</tr>\n"
<font color='#997700'>@@ -570,8 +571,12 @@
</font> theCoverageMap = symbolPtr->second.unifiedCoverageMap;
fprintf(
report,
<font color='#880000'>- "<td class=\"covoar-td\" align=\"center\">%d / %d</td>\n",
- theCoverageMap->getWasTaken( lowAddress - bAddress ),
</font><font color='#000088'>+ "<td class=\"covoar-td\" align=\"center\">%d</td>\n",
+ theCoverageMap->getWasTaken( lowAddress - bAddress )
+ );
+ fprintf(
+ report,
+ "<td class=\"covoar-td\" align=\"center\">%d</td>\n",
</font> theCoverageMap->getWasNotTaken( lowAddress - bAddress )
);
</pre>
<p> </p>
<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>