<!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 gcc-testing (2010-05-10)</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>2010-05-10 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * generate_coverage_html: Individual tables per configuration. List of
        links to individual tables.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//gcc-testing/rtems-coverage/ChangeLog.diff?r1=text&tr1=1.214&r2=text&tr2=1.215&diff_format=h">M</a></td><td width='1%'>1.215</td><td width='100%'>rtems-coverage/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//gcc-testing/rtems-coverage/generate_coverage_html.diff?r1=text&tr1=1.19&r2=text&tr2=1.20&diff_format=h">M</a></td><td width='1%'>1.20</td><td width='100%'>rtems-coverage/generate_coverage_html</td></tr>
</table>
<pre>
<font color='#006600'>diff -u gcc-testing/rtems-coverage/ChangeLog:1.214 gcc-testing/rtems-coverage/ChangeLog:1.215
--- gcc-testing/rtems-coverage/ChangeLog:1.214  Mon May 10 16:39:29 2010
+++ gcc-testing/rtems-coverage/ChangeLog        Mon May 10 17:11:52 2010
</font><font color='#997700'>@@ -1,5 +1,10 @@
</font> 2010-05-10        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
<font color='#000088'>+   * generate_coverage_html: Individual tables per configuration. List of
+       links to individual tables.
+
+2010-05-10     Joel Sherrill <joel.sherrilL@OARcorp.com>
+
</font>   * generate_coverage_html: Generate separate html files for each BSP.
 
 2010-05-10     Joel Sherrill <joel.sherrilL@OARcorp.com>

<font color='#006600'>diff -u gcc-testing/rtems-coverage/generate_coverage_html:1.19 gcc-testing/rtems-coverage/generate_coverage_html:1.20
--- gcc-testing/rtems-coverage/generate_coverage_html:1.19      Mon May 10 16:39:29 2010
+++ gcc-testing/rtems-coverage/generate_coverage_html   Mon May 10 17:11:52 2010
</font><font color='#997700'>@@ -151,7 +151,6 @@
</font> print_doc_bottom()
 {
 cat <<EOF
<font color='#880000'>-</table>
</font> </body>
 EOF
 }
<font color='#997700'>@@ -169,25 +168,19 @@
</font> 
   print_doc_top ${cpu}/${BSP}
 
<font color='#880000'>-  echo "<table class=\"stats-table\" cellspacing=\"1\" cellpadding=\"2\">"
-  # echo "<tr class=\"stats-table-target\">"
-  # echo "<td colspan=\"10\">"
-  # echo "<strong>${cpu}/${bsp}</strong>"
-  # echo "</td>"
-  # echo "</tr>"
-  echo "<tr class=\"stats-table-top\">"
-  ### generate header
-  print_heading Day
-  print_heading Time
-  print_heading Optimization
-  print_heading POSIX Enabled
-  print_heading Developmental Enabled
-  print_heading Uncovered Ranges
-  # skip Uncovered Percentage
-  print_heading Covered Percentage
-  print_heading Uncovered Bytes
-  print_heading Total Bytes
-  print_heading Results
</font><font color='#000088'>+  cat <<EOF
+<ul>
+<li><a href="#O2pd">Results for-O2, POSIX Disabled, Core Only</a></li>
+<li><a href="#O2pD">Results for-O2, POSIX Disabled, Developmental</a></li>
+<li><a href="#O2Pd">Results for-O2, POSIX Enabled, Core Only</a></li>
+<li><a href="#O2PD">Results for-O2, POSIX Enabled, Developmental</a></li>
+<li><a href="#Ospd">Results for-Os, POSIX Disabled, Core Only</a></li>
+<li><a href="#OspD">Results for-Os, POSIX Disabled, Developmental</a></li>
+<li><a href="#OsPd">Results for-Os, POSIX Enabled, Core Only</a></li>
+<li><a href="#OsPD">Results for-Os, POSIX Enabled, Developmental</a></li>
+</ul>
+</br>
+EOF
</font> 
   #cat ${bsp}-*-*-*/row.html | sed -e 's/<TD>/<TD><CENTER>/g' \
   #   -e 's/<\/TD>/<\/CENTER><\/TD>/g'
<font color='#997700'>@@ -198,13 +191,27 @@
</font>   first="yes"
   for build in O2pd O2pD O2Pd O2PD Ospd OspD OsPd OsPD
   do
<font color='#880000'>-    if [ ${first} = "no" ] ; then
-      echo "<tr class=\"stats-table-target\">"
-      echo "<td colspan=\"10\">"
-      echo "<strong></br></strong>"
-      echo "</td>"
-      echo "</tr>"
-    fi
</font><font color='#000088'>+    echo "<a name=\"${build}\"></a>"
+    echo "<table class=\"stats-table\" cellspacing=\"1\" cellpadding=\"2\">"
+    echo "<tr class=\"stats-table-target\">"
+    echo "<td colspan=\"10\">"
+    echo "<strong>${cpu}/${bsp} (${build})</strong>"
+    echo "</td>"
+    echo "</tr>"
+    echo "<tr class=\"stats-table-top\">"
+    ### generate header
+    print_heading Day
+    print_heading Time
+    print_heading Optimization
+    print_heading POSIX Enabled
+    print_heading Developmental Enabled
+    print_heading Uncovered Ranges
+    # skip Uncovered Percentage
+    print_heading Covered Percentage
+    print_heading Uncovered Bytes
+    print_heading Total Bytes
+    print_heading Results
+
</font>     first=no
     ls -1 ${bsp}-${build}-*-*/row.html | sort -t -  -k 1,2 -k 3,4Vr | \
     while read row
<font color='#997700'>@@ -219,6 +226,8 @@
</font>       -e '8d' \
       <$row
     done
<font color='#000088'>+    echo "</table>"
+    echo "</br>"
</font>   done
   print_doc_bottom
 }
</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>