2009-05-07 Joel Sherrill <joel.sherrill@oarcorp.com>

* malloctest/init.c: Fix typo.
This commit is contained in:
Joel Sherrill
2009-05-07 20:18:22 +00:00
parent 56b7951e45
commit 3b2edab9ab
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2009-05-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* malloctest/init.c: Fix typo.
2009-05-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac: Add shell of heap walk test for Santosh.

View File

@@ -162,7 +162,7 @@ void test_heap_cases_1()
test_heap_init();
puts( "Heap Initialized" );
p1 = _Heap_Allocate( &TestHeap, 500 );
rtems_test_assert( p2 != NULL );
rtems_test_assert( p1 != NULL );
p2 = _Heap_Allocate( &TestHeap, 500 );
rtems_test_assert( p2 != NULL );
rsc = _Heap_Resize_block( &TestHeap, p1, 256, &u1, &u2 );