From 384f0225e89e8b22a3ab4574cb56ae6a6f8601fd Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 9 Aug 2009 17:31:48 +0000 Subject: 2009-08-09 Joel Sherrill * malloctest/init.c: Adjust allocation in test so it passes now that heap overhead constant has been increased. --- testsuites/libtests/ChangeLog | 5 +++++ testsuites/libtests/malloctest/init.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'testsuites/libtests') diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog index 3468e1d654..2ba41e3b0a 100644 --- a/testsuites/libtests/ChangeLog +++ b/testsuites/libtests/ChangeLog @@ -1,3 +1,8 @@ +2009-08-09 Joel Sherrill + + * malloctest/init.c: Adjust allocation in test so it passes now that + heap overhead constant has been increased. + 2009-08-06 Joel Sherrill * bspcmdline01/init.c: Do not violate visibility. diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c index 8796bf9693..b4a9873a14 100644 --- a/testsuites/libtests/malloctest/init.c +++ b/testsuites/libtests/malloctest/init.c @@ -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 ); -- cgit v1.2.3