From 62e6e7cdadba035fb3ef1ef202117b0b38325e13 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 2 Jul 2009 15:25:36 +0000 Subject: 2009-07-02 Joel Sherrill * Makefile.am, configure.ac: Add new test for user configured stack allocator/deallocator. Test both pass and fail cases. * spstkalloc/.cvsignore, spstkalloc/Makefile.am, spstkalloc/init.c, spstkalloc/spstkalloc.doc, spstkalloc/spstkalloc.scn: New files. --- testsuites/sptests/spstkalloc/.cvsignore | 2 + testsuites/sptests/spstkalloc/Makefile.am | 29 +++++++++ testsuites/sptests/spstkalloc/init.c | 90 ++++++++++++++++++++++++++++ testsuites/sptests/spstkalloc/spstkalloc.doc | 24 ++++++++ testsuites/sptests/spstkalloc/spstkalloc.scn | 0 5 files changed, 145 insertions(+) create mode 100644 testsuites/sptests/spstkalloc/.cvsignore create mode 100644 testsuites/sptests/spstkalloc/Makefile.am create mode 100644 testsuites/sptests/spstkalloc/init.c create mode 100644 testsuites/sptests/spstkalloc/spstkalloc.doc create mode 100644 testsuites/sptests/spstkalloc/spstkalloc.scn (limited to 'testsuites/sptests/spstkalloc') diff --git a/testsuites/sptests/spstkalloc/.cvsignore b/testsuites/sptests/spstkalloc/.cvsignore new file mode 100644 index 0000000000..282522db03 --- /dev/null +++ b/testsuites/sptests/spstkalloc/.cvsignore @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff --git a/testsuites/sptests/spstkalloc/Makefile.am b/testsuites/sptests/spstkalloc/Makefile.am new file mode 100644 index 0000000000..bf4addcbd4 --- /dev/null +++ b/testsuites/sptests/spstkalloc/Makefile.am @@ -0,0 +1,29 @@ +## +## $Id$ +## + +MANAGERS = all + +rtems_tests_PROGRAMS = spstkalloc +spstkalloc_SOURCES = init.c + +dist_rtems_tests_DATA = spstkalloc.scn +dist_rtems_tests_DATA += spstkalloc.doc + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(top_srcdir)/../automake/compile.am +include $(top_srcdir)/../automake/leaf.am + +spstkalloc_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel) + +AM_CPPFLAGS += -I$(top_srcdir)/../support/include +AM_CPPFLAGS += -DUSE_TIMER_SERVER + +LINK_OBJS = $(spstkalloc_OBJECTS) $(spstkalloc_LDADD) +LINK_LIBS = $(spstkalloc_LDLIBS) + +spstkalloc$(EXEEXT): $(spstkalloc_OBJECTS) $(spstkalloc_DEPENDENCIES) + @rm -f spstkalloc$(EXEEXT) + $(make-exe) + +include $(top_srcdir)/../automake/local.am diff --git a/testsuites/sptests/spstkalloc/init.c b/testsuites/sptests/spstkalloc/init.c new file mode 100644 index 0000000000..131a803525 --- /dev/null +++ b/testsuites/sptests/spstkalloc/init.c @@ -0,0 +1,90 @@ +/* + * COPYRIGHT (c) 1989-2009. + * On-Line Applications Research Corporation (OAR). + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + * + * $Id$ + */ + +#include + +#define MAXIMUM_STACKS 3 + +typedef struct { + uint8_t Space[CPU_STACK_MINIMUM_SIZE]; +} StackMemory_t; + +int stackToAlloc = 0; +StackMemory_t Stacks[3]; +void *StackDeallocated = NULL; + +void *StackAllocator(uint32_t size) +{ + if (stackToAlloc < MAXIMUM_STACKS) + return &Stacks[stackToAlloc++]; + return NULL; +} + +void StackDeallocator(void *stack) +{ + StackDeallocated = stack; +} + +rtems_task Init( + rtems_task_argument ignored +) +{ + rtems_status_code rc; + rtems_id taskId; + rtems_id taskId1; + + puts( "\n\n*** TEST OF STACK ALLOCATOR PLUGIN ***" ); + + puts( "Init - create task TA1 to use custom stack allocator - OK" ); + rc = rtems_task_create( + rtems_build_name( 'T', 'A', '1', ' ' ), + 1, + RTEMS_MINIMUM_STACK_SIZE, + RTEMS_DEFAULT_MODES, + RTEMS_DEFAULT_ATTRIBUTES, + &taskId + ); + directive_failed( rc, "rtems_task_create of TA1" ); + + puts( "Init - create task TA1 to have custom stack allocator fail" ); + rc = rtems_task_create( + rtems_build_name( 'F', 'A', 'I', 'L' ), + 1, + RTEMS_MINIMUM_STACK_SIZE, + RTEMS_DEFAULT_MODES, + RTEMS_DEFAULT_ATTRIBUTES, + &taskId1 + ); + fatal_directive_status( rc, RTEMS_UNSATISFIED, "rtems_task_create of FAIL" ); + + puts( "Init - delete task TA1 to use custom stack deallocator - OK" ); + rc = rtems_task_delete( taskId ); + directive_failed( rc, "rtems_task_delete of TA1" ); + + puts( "*** END OF OF STACK ALLOCATOR PLUGIN TEST ***" ); + rtems_test_exit(0); +} + +/* configuration information */ + +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER +#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER + +#define CONFIGURE_TASK_STACK_ALLOCATOR StackAllocator +#define CONFIGURE_TASK_STACK_DEALLOCATOR StackDeallocator + +#define CONFIGURE_RTEMS_INIT_TASKS_TABLE +#define CONFIGURE_MAXIMUM_TASKS 3 + +#define CONFIGURE_INIT +#include + +/* global variables */ diff --git a/testsuites/sptests/spstkalloc/spstkalloc.doc b/testsuites/sptests/spstkalloc/spstkalloc.doc new file mode 100644 index 0000000000..67c370a6d9 --- /dev/null +++ b/testsuites/sptests/spstkalloc/spstkalloc.doc @@ -0,0 +1,24 @@ +# +# $Id$ +# +# COPYRIGHT (c) 1989-2009. +# On-Line Applications Research Corporation (OAR). +# +# The license and distribution terms for this file may be +# found in the file LICENSE in this distribution or at +# http://www.rtems.com/license/LICENSE. +# + +This file describes the directives and concepts tested by this test set. + +test set name: spstkalloc + +directives: + + rtems_task_creat + rtems_task_delete + + +concepts: + ++ Ensure that the custom stack allocation plugins work as documented. diff --git a/testsuites/sptests/spstkalloc/spstkalloc.scn b/testsuites/sptests/spstkalloc/spstkalloc.scn new file mode 100644 index 0000000000..e69de29bb2 -- cgit v1.2.3