forked from Imagelibrary/rtems
2009-08-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* malloctest/init.c: Adjust allocation in test so it passes now that heap overhead constant has been increased.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2009-08-09 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* malloctest/init.c: Adjust allocation in test so it passes now that
|
||||
heap overhead constant has been increased.
|
||||
|
||||
2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* bspcmdline01/init.c: Do not violate visibility.
|
||||
|
||||
@@ -162,7 +162,7 @@ void test_heap_cases_1()
|
||||
puts( "Heap Initialized" );
|
||||
p1 = _Heap_Allocate( &TestHeap, 500 );
|
||||
rtems_test_assert( p1 != NULL );
|
||||
p2 = _Heap_Allocate( &TestHeap, 500 );
|
||||
p2 = _Heap_Allocate( &TestHeap, 496 );
|
||||
rtems_test_assert( p2 != NULL );
|
||||
rsc = _Heap_Resize_block( &TestHeap, p1, 256, &u1, &u2 );
|
||||
rtems_test_assert( rsc == HEAP_RESIZE_SUCCESSFUL );
|
||||
|
||||
Reference in New Issue
Block a user