<!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-09)</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>sh</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-03-09 Sebastian Huber <sebastian.huber@embedded-brains.de>

        * malloctest/init.c: Improve coverage.
        * malloctest/malloctest.scn: Update.
</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.259&r2=text&tr2=1.260&diff_format=h">M</a></td><td width='1%'>1.260</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.44&r2=text&tr2=1.45&diff_format=h">M</a></td><td width='1%'>1.45</td><td width='100%'>testsuites/libtests/malloctest/init.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/malloctest/malloctest.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/libtests/malloctest/malloctest.scn</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.259 rtems/testsuites/libtests/ChangeLog:1.260
--- rtems/testsuites/libtests/ChangeLog:1.259   Tue Feb 22 08:46:46 2011
+++ rtems/testsuites/libtests/ChangeLog Wed Mar  9 09:39:58 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-03-09    Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+       * malloctest/init.c: Improve coverage.
+       * malloctest/malloctest.scn: Update.
+
</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/libtests/malloctest/init.c:1.44 rtems/testsuites/libtests/malloctest/init.c:1.45
--- rtems/testsuites/libtests/malloctest/init.c:1.44    Tue Feb 22 01:34:07 2011
+++ rtems/testsuites/libtests/malloctest/init.c Wed Mar  9 09:39:58 2011
</font><font color='#997700'>@@ -940,32 +940,42 @@
</font> static void test_heap_extend(void)
 {
   bool ret = false;
<font color='#000088'>+  Heap_Control *heap = &TestHeap;
+  uint8_t *area_begin = TestHeapMemory;
</font> 
<font color='#880000'>-  _Heap_Initialize( &TestHeap, TestHeapMemory + 768, 256, 0 );
</font><font color='#000088'>+  _Heap_Initialize( heap, area_begin + 768, 256, 0 );
</font> 
   puts( "heap extend - link below" );
<font color='#880000'>-  ret = _Protected_heap_Extend( &TestHeap, TestHeapMemory + 0, 256 );
</font><font color='#000088'>+  ret = _Protected_heap_Extend( heap, area_begin + 0, 256 );
</font>   test_heap_assert( ret, true );
 
   puts( "heap extend - merge below" );
<font color='#880000'>-  ret = _Protected_heap_Extend( &TestHeap, TestHeapMemory + 512, 256 );
</font><font color='#000088'>+  ret = _Protected_heap_Extend( heap, area_begin + 512, 256 );
</font>   test_heap_assert( ret, true );
 
   puts( "heap extend - merge above" );
<font color='#880000'>-  ret = _Protected_heap_Extend( &TestHeap, TestHeapMemory + 1024, 256 );
</font><font color='#000088'>+  ret = _Protected_heap_Extend( heap, area_begin + 1024, 256 );
</font>   test_heap_assert( ret, true );
 
   puts( "heap extend - link above" );
<font color='#880000'>-  ret = _Protected_heap_Extend( &TestHeap, TestHeapMemory + 1536, 256 );
</font><font color='#000088'>+  ret = _Protected_heap_Extend( heap, area_begin + 1536, 256 );
</font>   test_heap_assert( ret, true );
 
   puts( "heap extend - area too small" );
<font color='#880000'>-  ret = _Protected_heap_Extend( &TestHeap, TestHeapMemory + 2048, 0 );
</font><font color='#000088'>+  ret = _Protected_heap_Extend( heap, area_begin + 2048, 0 );
</font>   test_heap_assert( ret, false );
 
   puts( "heap extend - invalid area" );
<font color='#880000'>-  ret = _Protected_heap_Extend( &TestHeap, (void *) -1, 2 );
</font><font color='#000088'>+  ret = _Protected_heap_Extend( heap, (void *) -1, 2 );
</font>   test_heap_assert( ret, false );
<font color='#000088'>+
+  area_begin = (uint8_t *) (((uintptr_t) area_begin) | 1);
+
+  _Heap_Initialize( heap, area_begin + 768, 256, 0 );
+
+  puts( "heap extend - merge below with align up" );
+  ret = _Protected_heap_Extend( heap, area_begin + 512, 256 );
+  test_heap_assert( ret, true );
</font> }
 
 static void test_heap_info(void)

<font color='#006600'>diff -u rtems/testsuites/libtests/malloctest/malloctest.scn:1.5 rtems/testsuites/libtests/malloctest/malloctest.scn:1.6
--- rtems/testsuites/libtests/malloctest/malloctest.scn:1.5     Wed Sep  9 09:59:09 2009
+++ rtems/testsuites/libtests/malloctest/malloctest.scn Wed Mar  9 09:39:58 2011
</font><font color='#997700'>@@ -44,8 +44,13 @@
</font> malloc_walk - normal path
 malloc_walk - in critical section path
 Heap Initialized
<font color='#880000'>-heap extend - bad address
-heap extend - OK
</font><font color='#000088'>+heap extend - link below
+heap extend - merge below
+heap extend - merge above
+heap extend - link above
+heap extend - area too small
+heap extend - invalid area
+heap extend - merge below with align up
</font> malloc_free_space - check malloc space drops after malloc
 malloc_free_space - verify free space returns to previous value
 malloc_info - called with NULL
</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>