summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rbheap01
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-08-03 13:02:58 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-08-05 09:30:37 +0200
commit60fe374247eba365afb7f1a7055298af575434c7 (patch)
treec3323eaf5c6939c5c9e4fd64671a443dcd521150 /testsuites/libtests/rbheap01
parentAdd and use RTEMS_CONTAINER_OF() (diff)
downloadrtems-60fe374247eba365afb7f1a7055298af575434c7.tar.bz2
rbtree: Add and use RBTree_Compare_result
Diffstat (limited to 'testsuites/libtests/rbheap01')
-rw-r--r--testsuites/libtests/rbheap01/init.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/testsuites/libtests/rbheap01/init.c b/testsuites/libtests/rbheap01/init.c
index 93813b865c..6fd86db385 100644
--- a/testsuites/libtests/rbheap01/init.c
+++ b/testsuites/libtests/rbheap01/init.c
@@ -94,22 +94,6 @@ static bool chunk_visitor(
return false;
}
-static void test_init_chunk_alignment(void)
-{
- rtems_status_code sc = RTEMS_SUCCESSFUL;
- rtems_rbheap_control control;
-
- sc = rtems_rbheap_initialize(
- &control,
- area,
- sizeof(area),
- 0,
- extend_descriptors,
- NULL
- );
- rtems_test_assert(sc == RTEMS_INVALID_NUMBER);
-}
-
static void test_init_begin_greater_than_end(void)
{
rtems_status_code sc = RTEMS_SUCCESSFUL;
@@ -597,7 +581,6 @@ static void Init(rtems_task_argument arg)
{
TEST_BEGIN();
- test_init_chunk_alignment();
test_init_begin_greater_than_end();
test_init_begin_greater_than_aligned_begin();
test_init_aligned_begin_greater_than_aligned_end();