<!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 (2011-03-08)</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-03-08 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * spchain/init.c: Improve coverage testing.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/sptests/ChangeLog.diff?r1=text&tr1=1.434&r2=text&tr2=1.435&diff_format=h">M</a></td><td width='1%'>1.435</td><td width='100%'>testsuites/sptests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/sptests/spchain/init.c.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%'>testsuites/sptests/spchain/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/sptests/ChangeLog:1.434 rtems/testsuites/sptests/ChangeLog:1.435
--- rtems/testsuites/sptests/ChangeLog:1.434    Tue Feb 22 08:54:45 2011
+++ rtems/testsuites/sptests/ChangeLog  Tue Mar  8 18:38:56 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-03-08    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * spchain/init.c: Improve coverage testing.
+
</font> 2011-02-22        Ralf Corsépius <ralf.corsepius@rtems.org>
 
        * configure.ac: Add AC_CONFIG_HEADER(config.h).

<font color='#006600'>diff -u rtems/testsuites/sptests/spchain/init.c:1.9 rtems/testsuites/sptests/spchain/init.c:1.10
--- rtems/testsuites/sptests/spchain/init.c:1.9 Tue Feb 22 01:37:02 2011
+++ rtems/testsuites/sptests/spchain/init.c     Tue Mar  8 18:38:56 2011
</font><font color='#997700'>@@ -76,6 +76,13 @@
</font>   rtems_test_assert( sc == RTEMS_SUCCESSFUL );
   rtems_test_assert( p == &a );
 
<font color='#000088'>+  rtems_chain_initialize_empty( &chain );
+
+  rtems_chain_append( &chain, &b );
+  sc = rtems_chain_append_with_notification( &chain, &a, rtems_task_self(), EVENT );
+  rtems_test_assert( sc == RTEMS_SUCCESSFUL );
+  rtems_test_assert( p == &a );
+
</font>   puts( "INIT - Verify rtems_chain_prepend_with_notification" );
   rtems_chain_initialize_empty( &chain );
   sc = rtems_chain_prepend_with_notification( &chain, &a, rtems_task_self(), EVENT );
<font color='#997700'>@@ -84,6 +91,12 @@
</font>   rtems_test_assert( sc == RTEMS_SUCCESSFUL );
   rtems_test_assert( p == &a );
 
<font color='#000088'>+  rtems_chain_prepend( &chain, &b );
+  sc = rtems_chain_prepend_with_notification( &chain, &a, rtems_task_self(), EVENT );
+  rtems_test_assert( sc == RTEMS_SUCCESSFUL );
+  rtems_test_assert( p == &a );
+
+  puts( "INIT - Verify rtems_chain_prepend_with_notification" );
</font>   puts( "INIT - Verify rtems_chain_get_with_notification" );
   rtems_chain_initialize_empty( &chain );
 
</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>