summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp46
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-04 15:58:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-04 15:58:49 +0000
commited348c8a7af4644eec114b11f36f416a8b93b908 (patch)
tree8159ceb2aaf4b2ec7e2b4b811710ef75d1f84d94 /testsuites/sptests/sp46
parent2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-ed348c8a7af4644eec114b11f36f416a8b93b908.tar.bz2
2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1348/cpukit * Makefile.am, configure.ac: Add test of special case of resetting cpu usage information while a period is running. * sp46/.cvsignore, sp46/Makefile.am, sp46/init.c, sp46/sp46.doc, sp46/sp46.scn: New files.
Diffstat (limited to 'testsuites/sptests/sp46')
-rw-r--r--testsuites/sptests/sp46/.cvsignore2
-rw-r--r--testsuites/sptests/sp46/Makefile.am28
-rw-r--r--testsuites/sptests/sp46/init.c117
-rw-r--r--testsuites/sptests/sp46/sp46.doc27
-rw-r--r--testsuites/sptests/sp46/sp46.scn0
5 files changed, 174 insertions, 0 deletions
diff --git a/testsuites/sptests/sp46/.cvsignore b/testsuites/sptests/sp46/.cvsignore
new file mode 100644
index 0000000000..282522db03
--- /dev/null
+++ b/testsuites/sptests/sp46/.cvsignore
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
diff --git a/testsuites/sptests/sp46/Makefile.am b/testsuites/sptests/sp46/Makefile.am
new file mode 100644
index 0000000000..d90ebff661
--- /dev/null
+++ b/testsuites/sptests/sp46/Makefile.am
@@ -0,0 +1,28 @@
+##
+## $Id$
+##
+
+MANAGERS = all
+
+rtems_tests_PROGRAMS = sp46.exe
+sp46_exe_SOURCES = init.c
+
+dist_rtems_tests_DATA = sp46.scn
+dist_rtems_tests_DATA += sp46.doc
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../automake/compile.am
+include $(top_srcdir)/../automake/leaf.am
+
+sp46_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
+LINK_OBJS = $(sp46_exe_OBJECTS) $(sp46_exe_LDADD)
+LINK_LIBS = $(sp46_exe_LDLIBS)
+
+sp46.exe$(EXEEXT): $(sp46_exe_OBJECTS) $(sp46_exe_DEPENDENCIES)
+ @rm -f sp46.exe$(EXEEXT)
+ $(make-exe)
+
+include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/sptests/sp46/init.c b/testsuites/sptests/sp46/init.c
new file mode 100644
index 0000000000..b0d91439cd
--- /dev/null
+++ b/testsuites/sptests/sp46/init.c
@@ -0,0 +1,117 @@
+/*
+ * COPYRIGHT (c) 1989-2008.
+ * 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 <tmacros.h>
+#include <rtems/cpuuse.h>
+
+volatile int partial_loop = 0;
+
+rtems_task Periodic_Task(
+ rtems_task_argument argument
+)
+{
+ rtems_status_code status;
+ rtems_name period_name = rtems_build_name('P','E','R','a');
+ rtems_id period_id;
+ rtems_interval start;
+ rtems_interval end;
+
+ puts( "Periodic - Create Period" );
+ /* create period */
+ status = rtems_rate_monotonic_create( period_name, &period_id );
+ directive_failed(status, "rate_monotonic_create");
+
+ partial_loop = 0;
+ while (1) {
+ /* start period with initial value */
+ status = rtems_rate_monotonic_period( period_id, 25 );
+ directive_failed(status, "rate_monotonic_period");
+ partial_loop = 0;
+
+ start = rtems_clock_get_ticks_since_boot();
+ end = start + 5;
+ while ( end <= rtems_clock_get_ticks_since_boot() )
+ ;
+
+ partial_loop = 1;
+
+ rtems_task_wake_after( 5 );
+ }
+
+ puts( "Periodic - Deleting self" );
+ rtems_task_delete( RTEMS_SELF );
+}
+
+rtems_task Init(
+ rtems_task_argument argument
+)
+{
+ rtems_status_code status;
+ rtems_id task_id;
+
+ puts( "\n\n*** TEST 45 ***" );
+
+ /*
+ * Initialize Tasks
+ */
+
+
+ puts( "INIT - rtems_task_create - creating task 1" );
+ status = rtems_task_create(
+ rtems_build_name( 'T', 'A', '1', ' ' ),
+ 1,
+ RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_DEFAULT_MODES,
+ RTEMS_DEFAULT_ATTRIBUTES,
+ &task_id
+ );
+ directive_failed( status, "rtems_task_create of TA1" );
+
+ puts( "INIT - rtems_task_start - TA1 " );
+ status = rtems_task_start( task_id, Periodic_Task, 0 );
+ directive_failed( status, "rtems_task_start of TA1" );
+
+ while ( !partial_loop ) {
+ status = rtems_task_wake_after( 2 );
+ directive_failed( status, "rtems_task_wake_after" );
+ }
+
+ rtems_cpu_usage_reset();
+
+ status = rtems_task_wake_after( TICKS_PER_SECOND );
+ directive_failed( status, "rtems_task_wake_after" );
+
+ /*
+ * Exit test
+ */
+ puts( "*** END OF TEST 46 *** " );
+ rtems_test_exit( 0 );
+}
+
+#define CONFIGURE_INIT
+/* configuration information */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+/* Two Tasks: Init and Timer Server */
+#define CONFIGURE_MAXIMUM_TASKS 2
+#define CONFIGURE_MAXIMUM_PERIODS 1
+#define CONFIGURE_INIT_TASK_STACK_SIZE (RTEMS_MINIMUM_STACK_SIZE * 2)
+#define CONFIGURE_INIT_TASK_PRIORITY 10
+#define CONFIGURE_INIT_TASK_MODES RTEMS_DEFAULT_MODES
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_EXTRA_TASK_STACKS (1 * RTEMS_MINIMUM_STACK_SIZE)
+
+#include <rtems/confdefs.h>
+
diff --git a/testsuites/sptests/sp46/sp46.doc b/testsuites/sptests/sp46/sp46.doc
new file mode 100644
index 0000000000..e3c0b65864
--- /dev/null
+++ b/testsuites/sptests/sp46/sp46.doc
@@ -0,0 +1,27 @@
+#
+# $Id$
+#
+# COPYRIGHT (c) 1989-2008.
+# 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: sp46
+
+directives:
+
+ rtems_rate_monotonic_period
+ rtems_cpu_usage_reset
+
+concepts:
+
++ resetting the CPU Usage information while a period is partial
+ complete.
+
+
diff --git a/testsuites/sptests/sp46/sp46.scn b/testsuites/sptests/sp46/sp46.scn
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/testsuites/sptests/sp46/sp46.scn