From c14c2f0baf9cf9654c43ee00e7b85cdabaa16f7c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 8 May 2009 02:05:51 +0000 Subject: 2009-05-07 Joel Sherrill * Makefile.am, configure.ac: Add initial test of _Objects_Get_next. * spobjgetnext/.cvsignore, spobjgetnext/Makefile.am, spobjgetnext/init.c, spobjgetnext/spobjgetnext.scn, spobjgetnext/system.h: New files. --- testsuites/sptests/spobjgetnext/.cvsignore | 2 + testsuites/sptests/spobjgetnext/Makefile.am | 27 ++++++++ testsuites/sptests/spobjgetnext/init.c | 83 ++++++++++++++++++++++++ testsuites/sptests/spobjgetnext/spobjgetnext.scn | 0 testsuites/sptests/spobjgetnext/system.h | 33 ++++++++++ 5 files changed, 145 insertions(+) create mode 100644 testsuites/sptests/spobjgetnext/.cvsignore create mode 100644 testsuites/sptests/spobjgetnext/Makefile.am create mode 100644 testsuites/sptests/spobjgetnext/init.c create mode 100644 testsuites/sptests/spobjgetnext/spobjgetnext.scn create mode 100644 testsuites/sptests/spobjgetnext/system.h (limited to 'testsuites/sptests/spobjgetnext') diff --git a/testsuites/sptests/spobjgetnext/.cvsignore b/testsuites/sptests/spobjgetnext/.cvsignore new file mode 100644 index 0000000000..282522db03 --- /dev/null +++ b/testsuites/sptests/spobjgetnext/.cvsignore @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff --git a/testsuites/sptests/spobjgetnext/Makefile.am b/testsuites/sptests/spobjgetnext/Makefile.am new file mode 100644 index 0000000000..a0d67ef310 --- /dev/null +++ b/testsuites/sptests/spobjgetnext/Makefile.am @@ -0,0 +1,27 @@ +## +## $Id$ +## + +MANAGERS = all + +rtems_tests_PROGRAMS = spobjgetnext +spobjgetnext_SOURCES = init.c system.h + +dist_rtems_tests_DATA = spobjgetnext.scn + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(top_srcdir)/../automake/compile.am +include $(top_srcdir)/../automake/leaf.am + +spobjgetnext_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel) + +AM_CPPFLAGS += -I$(top_srcdir)/../support/include + +LINK_OBJS = $(spobjgetnext_OBJECTS) $(spobjgetnext_LDADD) +LINK_LIBS = $(spobjgetnext_LDLIBS) + +spobjgetnext$(EXEEXT): $(spobjgetnext_OBJECTS) $(spobjgetnext_DEPENDENCIES) + @rm -f spobjgetnext$(EXEEXT) + $(make-exe) + +include $(top_srcdir)/../automake/local.am diff --git a/testsuites/sptests/spobjgetnext/init.c b/testsuites/sptests/spobjgetnext/init.c new file mode 100644 index 0000000000..5058a69fff --- /dev/null +++ b/testsuites/sptests/spobjgetnext/init.c @@ -0,0 +1,83 @@ +/* + * Exercise SuperCore Object Get Next + * + * 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$ + */ + +#define CONFIGURE_INIT +#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 1 +#include "system.h" + +#define MAX_SCAN 10 +int scan_objects( + Objects_Information *information, + Objects_Id start +) +{ + Objects_Control *o[MAX_SCAN]; + int i; + Objects_Locations location; + Objects_Id id; + + memset( o, 1, sizeof(o) ); + + id = start; + for (i=0 ; i= 1 task and make sure the counts are correct when */ + /* XXX you start the search at initial, first id, arbitrary id */ + + /* XXX try with a manager with no objects created */ + + puts( "*** END OF TEST OBJECT GET NEXT ***" ); + rtems_test_exit( 0 ); +} diff --git a/testsuites/sptests/spobjgetnext/spobjgetnext.scn b/testsuites/sptests/spobjgetnext/spobjgetnext.scn new file mode 100644 index 0000000000..e69de29bb2 diff --git a/testsuites/sptests/spobjgetnext/system.h b/testsuites/sptests/spobjgetnext/system.h new file mode 100644 index 0000000000..b0e70f9883 --- /dev/null +++ b/testsuites/sptests/spobjgetnext/system.h @@ -0,0 +1,33 @@ +/* + * 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 + +/* functions */ + +rtems_task Init( + rtems_task_argument argument +); + +/* configuration information */ + +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER +#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER + +#define CONFIGURE_RTEMS_INIT_TASKS_TABLE + +#define CONFIGURE_MAXIMUM_TASKS 2 +#define CONFIGURE_MAXIMUM_TIMERS 1 +#define CONFIGURE_MAXIMUM_SEMAPHORES 1 + +#include + +/* end of include file */ -- cgit v1.2.3