summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/malloctest
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2010-06-22 18:20:47 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2010-06-22 18:20:47 +0000
commit91e446f3ab34f391738015fee889c3c54046bf51 (patch)
treee36953f6e6fa1aae8573e0afa45ab4ba9f897188 /testsuites/libtests/malloctest
parent2010-06-22 Jennifer Averett <Jennifer.Averett@OARcorp.com> (diff)
downloadrtems-91e446f3ab34f391738015fee889c3c54046bf51.tar.bz2
2010-06-22 Jennifer Averett <Jennifer.Averett@OARcorp.com>
* malloctest/init.c: Added error case with malloc of size 0.
Diffstat (limited to 'testsuites/libtests/malloctest')
-rw-r--r--testsuites/libtests/malloctest/init.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c
index cdb4791060..a2054f6d77 100644
--- a/testsuites/libtests/malloctest/init.c
+++ b/testsuites/libtests/malloctest/init.c
@@ -1086,12 +1086,26 @@ rtems_task Init(
status = rtems_clock_set( &time );
directive_failed( status, "rtems_clock_set" );
+ /*
+ * Verify case where block is too large to calloc.
+ */
p1 = calloc( 1, SIZE_MAX );
if (p1) {
printf("ERROR on attempt to calloc SIZE_MAX block expected failure.");
free( p1 );
}
+ /*
+ * Verify error case where malloc of size 0.
+ */
+ p1 = malloc( 0 );
+ if (p1) {
+ printf("ERROR on attempt to malloc size 0 block expected failure.");
+ free( p1 );
+ }
+
+
+
test_heap_initialize();
test_heap_block_allocate();
test_heap_allocate();