<!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-06-22)</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>jennifer</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-06-22 Jennifer Averett <Jennifer.Averett@OARcorp.com>
* psxtime/psxtime.scn, psxtime/test.c: Add a normal case with second
parameter to adjtime NULL.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtests/ChangeLog.diff?r1=text&tr1=1.266&r2=text&tr2=1.267&diff_format=h">M</a></td><td width='1%'>1.267</td><td width='100%'>testsuites/psxtests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtests/psxtime/psxtime.scn.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/psxtests/psxtime/psxtime.scn</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/psxtests/psxtime/test.c.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>testsuites/psxtests/psxtime/test.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/psxtests/ChangeLog:1.266 rtems/testsuites/psxtests/ChangeLog:1.267
--- rtems/testsuites/psxtests/ChangeLog:1.266 Sat Jun 19 15:55:29 2010
+++ rtems/testsuites/psxtests/ChangeLog Tue Jun 22 12:44:01 2010
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2010-06-22 Jennifer Averett <Jennifer.Averett@OARcorp.com>
+
+ * psxtime/psxtime.scn, psxtime/test.c: Add a normal case with second
+ parameter to adjtime NULL.
+
</font> 2010-06-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxfatal_support/init.c: Remove references to ITRON constants.
<font color='#006600'>diff -u rtems/testsuites/psxtests/psxtime/psxtime.scn:1.5 rtems/testsuites/psxtests/psxtime/psxtime.scn:1.6
--- rtems/testsuites/psxtests/psxtime/psxtime.scn:1.5 Wed Aug 19 10:13:34 2009
+++ rtems/testsuites/psxtests/psxtime/psxtime.scn Tue Jun 22 12:44:02 2010
</font><font color='#997700'>@@ -4,6 +4,7 @@
</font> adjtime - delta out of range - EINVAL
adjtime - delta too small - do nothing
adjtime - delta too small - do nothing, olddelta=NULL
<font color='#000088'>+adjtime - delta of one second forward, olddelta=NULL
</font> adjtime - delta of one second forward
adjtime - delta of almost two seconds forward
adjtime - delta of almost one second forward which bumps second
<font color='#006600'>diff -u rtems/testsuites/psxtests/psxtime/test.c:1.15 rtems/testsuites/psxtests/psxtime/test.c:1.16
--- rtems/testsuites/psxtests/psxtime/test.c:1.15 Tue Dec 8 11:52:53 2009
+++ rtems/testsuites/psxtests/psxtime/test.c Tue Jun 22 12:44:02 2010
</font><font color='#997700'>@@ -137,6 +137,12 @@
</font> sc = adjtime( &delta, NULL );
rtems_test_assert( sc == 0 );
<font color='#000088'>+ puts( "adjtime - delta of one second forward, olddelta=NULL" );
+ delta.tv_sec = 1;
+ delta.tv_usec = 0;
+ sc = adjtime( &delta, NULL );
+ rtems_test_assert( sc == 0 );
+
</font> puts( "adjtime - delta of one second forward" );
delta.tv_sec = 1;
delta.tv_usec = 0;
</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>jennifer</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-06-22 Jennifer Averett <Jennifer.Averett@OARcorp.com>
* malloctest/init.c: Added test to check failure branch on calloc.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/ChangeLog.diff?r1=text&tr1=1.180&r2=text&tr2=1.181&diff_format=h">M</a></td><td width='1%'>1.181</td><td width='100%'>testsuites/libtests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/malloctest/init.c.diff?r1=text&tr1=1.37&r2=text&tr2=1.38&diff_format=h">M</a></td><td width='1%'>1.38</td><td width='100%'>testsuites/libtests/malloctest/init.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.180 rtems/testsuites/libtests/ChangeLog:1.181
--- rtems/testsuites/libtests/ChangeLog:1.180 Mon Jun 21 16:09:36 2010
+++ rtems/testsuites/libtests/ChangeLog Tue Jun 22 13:09:04 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-06-22 Jennifer Averett <Jennifer.Averett@OARcorp.com>
+
+ * malloctest/init.c: Added test to check failure branch on calloc.
+
</font> 2010-06-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* malloc02/init.c, malloc02/malloc02.doc: Enable malloc dirty helper.
<font color='#006600'>diff -u rtems/testsuites/libtests/malloctest/init.c:1.37 rtems/testsuites/libtests/malloctest/init.c:1.38
--- rtems/testsuites/libtests/malloctest/init.c:1.37 Mon Jun 7 04:33:32 2010
+++ rtems/testsuites/libtests/malloctest/init.c Tue Jun 22 13:09:04 2010
</font><font color='#997700'>@@ -1076,6 +1076,7 @@
</font> rtems_task_argument argument
)
{
<font color='#000088'>+ void *p1;
</font> rtems_time_of_day time;
rtems_status_code status;
<font color='#997700'>@@ -1085,6 +1086,12 @@
</font> status = rtems_clock_set( &time );
directive_failed( status, "rtems_clock_set" );
<font color='#000088'>+ p1 = calloc( 1, SIZE_MAX );
+ if (p1) {
+ printf("ERROR on attempt to calloc SIZE_MAX block expected failure.");
+ free( p1 );
+ }
+
</font> test_heap_initialize();
test_heap_block_allocate();
test_heap_allocate();
</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>