2008-02-27 Joel Sherrill <joel.sherrill@oarcorp.com>

* malloctest/init.c: Fix return status check.
This commit is contained in:
Joel Sherrill
2008-02-27 21:50:05 +00:00
parent 88d2967e3e
commit 991efb611c
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2008-02-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* malloctest/init.c: Fix return status check.
2008-01-31 Joel Sherrill <joel.sherrill@OARcorp.com>
* cpuuse/init.c, malloctest/init.c, monitor/init.c, monitor02/init.c,

View File

@@ -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 );