summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spsimplesched03
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/spsimplesched03')
-rw-r--r--testsuites/sptests/spsimplesched03/.cvsignore2
-rw-r--r--testsuites/sptests/spsimplesched03/Makefile.am28
-rw-r--r--testsuites/sptests/spsimplesched03/init.c50
-rw-r--r--testsuites/sptests/spsimplesched03/spsimplesched03.doc22
-rw-r--r--testsuites/sptests/spsimplesched03/spsimplesched03.scn3
5 files changed, 105 insertions, 0 deletions
diff --git a/testsuites/sptests/spsimplesched03/.cvsignore b/testsuites/sptests/spsimplesched03/.cvsignore
new file mode 100644
index 0000000000..282522db03
--- /dev/null
+++ b/testsuites/sptests/spsimplesched03/.cvsignore
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
diff --git a/testsuites/sptests/spsimplesched03/Makefile.am b/testsuites/sptests/spsimplesched03/Makefile.am
new file mode 100644
index 0000000000..d90e9ecb5e
--- /dev/null
+++ b/testsuites/sptests/spsimplesched03/Makefile.am
@@ -0,0 +1,28 @@
+##
+## $Id$
+##
+
+MANAGERS = all
+
+rtems_tests_PROGRAMS = spsimplesched03
+spsimplesched03_SOURCES = init.c
+
+dist_rtems_tests_DATA = spsimplesched03.scn
+dist_rtems_tests_DATA += spsimplesched03.doc
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../automake/compile.am
+include $(top_srcdir)/../automake/leaf.am
+
+spsimplesched03_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
+LINK_OBJS = $(spsimplesched03_OBJECTS) $(spsimplesched03_LDADD)
+LINK_LIBS = $(spsimplesched03_LDLIBS)
+
+spsimplesched03$(EXEEXT): $(spsimplesched03_OBJECTS) $(spsimplesched03_DEPENDENCIES)
+ @rm -f spsimplesched03$(EXEEXT)
+ $(make-exe)
+
+include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/sptests/spsimplesched03/init.c b/testsuites/sptests/spsimplesched03/init.c
new file mode 100644
index 0000000000..2e190c2619
--- /dev/null
+++ b/testsuites/sptests/spsimplesched03/init.c
@@ -0,0 +1,50 @@
+/*
+ * COPYRIGHT (c) 2011.
+ * 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$
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <tmacros.h>
+
+rtems_task Init(
+ rtems_task_argument argument
+)
+{
+ rtems_status_code status;
+
+ puts( "\n\n*** SIMPLE SCHEDULER 03 TEST ***" );
+
+ puts( "INIT - rtems timer initiate server");
+ status = rtems_timer_initiate_server(
+ RTEMS_TIMER_SERVER_DEFAULT_PRIORITY,
+ RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_DEFAULT_ATTRIBUTES
+ );
+ directive_failed( status, "Timer Initiate Server" );
+
+ /* End the Test */
+ puts( "*** END OF SIMPLE SCHEDULER 03 TEST ***" );
+ rtems_test_exit(0);
+}
+
+/* configuration information */
+#define CONFIGURE_SCHEDULER_SIMPLE
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS 2
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+#define CONFIGURE_INIT_TASK_PRIORITY 2
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+/* end of include file */
diff --git a/testsuites/sptests/spsimplesched03/spsimplesched03.doc b/testsuites/sptests/spsimplesched03/spsimplesched03.doc
new file mode 100644
index 0000000000..9d60c4b61a
--- /dev/null
+++ b/testsuites/sptests/spsimplesched03/spsimplesched03.doc
@@ -0,0 +1,22 @@
+#
+# $Id$
+#
+# COPYRIGHT (c) 2011.
+# 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: spsimplesched03
+
+directives:
+ + rtems_timer_initiate_server
+
+concepts:
+
++ The purpose of this test is to exercise paths in the Simple Scheduler.
+ It exercises the preemption of the zero priority Timer Server.
diff --git a/testsuites/sptests/spsimplesched03/spsimplesched03.scn b/testsuites/sptests/spsimplesched03/spsimplesched03.scn
new file mode 100644
index 0000000000..9dd2e8414d
--- /dev/null
+++ b/testsuites/sptests/spsimplesched03/spsimplesched03.scn
@@ -0,0 +1,3 @@
+*** SIMPLE SCHEDULER 03 TEST ***
+INIT - rtems timer initiate server
+*** END OF SIMPLE SCHEDULER 03 TEST ***