<!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 (2010-10-26)</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-10-25 Joel Sherrill <joel.sherrill@oarcorp.com>

        * spchain/init.c: Attempt to improve coverage.
</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.422&r2=text&tr2=1.423&diff_format=h">M</a></td><td width='1%'>1.423</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.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>testsuites/sptests/spchain/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/sptests/ChangeLog:1.422 rtems/testsuites/sptests/ChangeLog:1.423
--- rtems/testsuites/sptests/ChangeLog:1.422    Mon Oct 25 02:29:27 2010
+++ rtems/testsuites/sptests/ChangeLog  Mon Oct 25 23:22:55 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-10-25    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * spchain/init.c: Attempt to improve coverage.
+
</font> 2010-10-25        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
        * spchain/init.c, spwatchdog/task1.c: Do not violate chain API.

<font color='#006600'>diff -u rtems/testsuites/sptests/spchain/init.c:1.5 rtems/testsuites/sptests/spchain/init.c:1.6
--- rtems/testsuites/sptests/spchain/init.c:1.5 Mon Oct 25 02:29:27 2010
+++ rtems/testsuites/sptests/spchain/init.c     Mon Oct 25 23:22:55 2010
</font><font color='#997700'>@@ -38,6 +38,7 @@
</font>   rtems_status_code sc = RTEMS_SUCCESSFUL;
   rtems_chain_control chain;
   rtems_chain_node a;
<font color='#000088'>+  rtems_chain_node b;
</font>   rtems_chain_node *p = (rtems_chain_node *) 1;
   rtems_event_set out = 0;
 
<font color='#997700'>@@ -59,8 +60,15 @@
</font> 
   puts( "INIT - Verify rtems_chain_get_with_notification" );
   rtems_chain_initialize_empty( &chain );
<font color='#000088'>+
+  rtems_chain_append( &chain, &b );
</font>   rtems_chain_append( &chain, &a );
<font color='#880000'>-  sc = rtems_chain_get_with_notification( &chain, rtems_task_self(), EVENT, &p );
</font><font color='#000088'>+
+  sc = rtems_chain_get_with_notification(&chain, rtems_task_self(), EVENT, &p);
+  rtems_test_assert( sc == RTEMS_SUCCESSFUL );
+  rtems_test_assert( p == &b );
+
+  sc = rtems_chain_get_with_notification(&chain, rtems_task_self(), EVENT, &p);
</font>   rtems_test_assert( sc == RTEMS_SUCCESSFUL );
   rtems_test_assert( p == &a );
   sc = rtems_event_receive(
<font color='#997700'>@@ -94,9 +102,14 @@
</font>   rtems_test_assert( empty );
   empty = rtems_chain_prepend_with_empty_check( &chain, &a );
   rtems_test_assert( !empty );
<font color='#000088'>+  empty = rtems_chain_prepend_with_empty_check( &chain, &b );
+  rtems_test_assert( !empty );
</font> 
   puts( "INIT - Verify rtems_chain_get_with_empty_check" );
   rtems_chain_initialize_empty( &chain );
<font color='#000088'>+  empty = rtems_chain_get_with_empty_check( &chain, &p );
+  rtems_test_assert( empty );
+
</font>   rtems_chain_append( &chain, &a );
   rtems_chain_append( &chain, &b );
   empty = rtems_chain_get_with_empty_check( &chain, &p );
</pre>
<p> </p>
<a name='cs2'></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>Spacing.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/tmtests/configure.ac.diff?r1=text&tr1=1.22&r2=text&tr2=1.23&diff_format=h">M</a></td><td width='1%'>1.23</td><td width='100%'>testsuites/tmtests/configure.ac</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/tmtests/configure.ac:1.22 rtems/testsuites/tmtests/configure.ac:1.23
--- rtems/testsuites/tmtests/configure.ac:1.22  Mon Jun 21 11:53:50 2010
+++ rtems/testsuites/tmtests/configure.ac       Mon Oct 25 23:24:28 2010
</font><font color='#997700'>@@ -24,7 +24,6 @@
</font> 
 RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
 
<font color='#880000'>-
</font> OPERATION_COUNT=${OPERATION_COUNT-100}
 AC_SUBST(OPERATION_COUNT)
 
</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>