From 991efb611cf611abb8568cb03133b8723899f605 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 27 Feb 2008 21:50:05 +0000 Subject: 2008-02-27 Joel Sherrill * malloctest/init.c: Fix return status check. --- testsuites/libtests/ChangeLog | 4 ++++ testsuites/libtests/malloctest/init.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'testsuites/libtests') diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog index 3f1fe1db46..bd85c3ccf3 100644 --- a/testsuites/libtests/ChangeLog +++ b/testsuites/libtests/ChangeLog @@ -1,3 +1,7 @@ +2008-02-27 Joel Sherrill + + * malloctest/init.c: Fix return status check. + 2008-01-31 Joel Sherrill * cpuuse/init.c, malloctest/init.c, monitor/init.c, monitor02/init.c, diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c index dc1f0cf39d..e6400f4dec 100644 --- a/testsuites/libtests/malloctest/init.c +++ b/testsuites/libtests/malloctest/init.c @@ -198,7 +198,7 @@ void test_heap_info(void) puts( "malloc_info - check free space drops after malloc" ); sc = malloc_info( &the_info ); - rtems_test_assert( sc == -1 ); + rtems_test_assert( sc == 0 ); s1 = the_info.Free.largest; p1 = malloc( 512 ); -- cgit v1.2.3