[PATCH 3/9] spsignal_err01: New test split from sp09.

Jennifer Averett jennifer.averett at oarcorp.com
Thu Mar 27 15:30:00 UTC 2014


From: Björn Larsson <BjornL at rtems.org>

This test moves rtems_signal_send error testing from sp09
screen 9 into its own test.
---
 testsuites/sptests/Makefile.am                     |  3 +-
 testsuites/sptests/configure.ac                    |  1 +
 testsuites/sptests/sp09/screen09.c                 | 27 ---------
 testsuites/sptests/sp09/sp09.scn                   |  3 -
 testsuites/sptests/spsignal_err01/Makefile.am      | 22 ++++++++
 testsuites/sptests/spsignal_err01/init.c           | 52 ++++++++++++++++++
 testsuites/sptests/spsignal_err01/isr.c            | 28 ++++++++++
 .../sptests/spsignal_err01/spsignal_err01.doc      | 25 +++++++++
 .../sptests/spsignal_err01/spsignal_err01.scn      |  5 ++
 testsuites/sptests/spsignal_err01/system.h         | 64 ++++++++++++++++++++++
 10 files changed, 199 insertions(+), 31 deletions(-)
 create mode 100644 testsuites/sptests/spsignal_err01/Makefile.am
 create mode 100644 testsuites/sptests/spsignal_err01/init.c
 create mode 100644 testsuites/sptests/spsignal_err01/isr.c
 create mode 100644 testsuites/sptests/spsignal_err01/spsignal_err01.doc
 create mode 100644 testsuites/sptests/spsignal_err01/spsignal_err01.scn
 create mode 100644 testsuites/sptests/spsignal_err01/system.h

diff --git a/testsuites/sptests/Makefile.am b/testsuites/sptests/Makefile.am
index 377a409..a4c3b01 100644
--- a/testsuites/sptests/Makefile.am
+++ b/testsuites/sptests/Makefile.am
@@ -29,7 +29,8 @@ SUBDIRS = \
     sppagesize spsem01 spsem02 spsimplesched01 spsimplesched02 \
     spsimplesched03 spnsext01 spedfsched01 spedfsched02 spedfsched03 \
     spcbssched01 spcbssched02 spcbssched03 spqreslib sptimespec01 \
-    spregion_err01 sppartition_err01 spratemon_err01 spintr_err01
+    spregion_err01 sppartition_err01 spratemon_err01 spintr_err01 \
+    spsignal_err01
 SUBDIRS += spprofiling01
 SUBDIRS += spcache01
 SUBDIRS += sptls03
diff --git a/testsuites/sptests/configure.ac b/testsuites/sptests/configure.ac
index 5fa111c..62ab10c 100644
--- a/testsuites/sptests/configure.ac
+++ b/testsuites/sptests/configure.ac
@@ -204,6 +204,7 @@ spratemon_err01/Makefile
 sprbtree01/Makefile
 spsem01/Makefile
 spsem02/Makefile
+spsignal_err01/Makefile
 spsimplesched01/Makefile
 spsimplesched02/Makefile
 spsimplesched03/Makefile
diff --git a/testsuites/sptests/sp09/screen09.c b/testsuites/sptests/sp09/screen09.c
index 6fc0923..f0c0ccc 100644
--- a/testsuites/sptests/sp09/screen09.c
+++ b/testsuites/sptests/sp09/screen09.c
@@ -25,33 +25,6 @@ void Screen9()
   void              *converted;
   rtems_status_code status;
 
-  /* send invalid id */
-  status = rtems_signal_send( 100, RTEMS_SIGNAL_1 );
-  fatal_directive_status(
-    status,
-    RTEMS_INVALID_ID,
-    "rtems_signal_send with illegal id"
-  );
-  puts( "TA1 - rtems_signal_send - RTEMS_INVALID_ID" );
-
-  /* no signal in set */
-  status = rtems_signal_send( RTEMS_SELF, 0 );
-  fatal_directive_status(
-    status,
-    RTEMS_INVALID_NUMBER,
-    "rtems_signal_send with no signals"
-  );
-  puts( "TA1 - rtems_signal_send - RTEMS_INVALID_NUMBER" );
-
-  /* no signal handler */
-  status = rtems_signal_send( RTEMS_SELF, RTEMS_SIGNAL_16 );
-  fatal_directive_status(
-    status,
-    RTEMS_NOT_DEFINED,
-    "rtems_signal_send with no handler"
-  );
-  puts( "TA1 - rtems_signal_send - RTEMS_NOT_DEFINED" );
-
   status = rtems_port_create(
      0,
      Internal_port_area,
diff --git a/testsuites/sptests/sp09/sp09.scn b/testsuites/sptests/sp09/sp09.scn
index b812410..a7d6615 100644
--- a/testsuites/sptests/sp09/sp09.scn
+++ b/testsuites/sptests/sp09/sp09.scn
@@ -176,9 +176,6 @@ TA1 - rtems_task_wake_after - yield processor - RTEMS_SUCCESSFUL
 TA3 - rtems_message_queue_receive - woke up with RTEMS_OBJECT_WAS_DELETED
 TA3 - rtems_task_delete - delete self - RTEMS_SUCCESSFUL
 <pause - screen 9>
-TA1 - rtems_signal_send - RTEMS_INVALID_ID
-TA1 - rtems_signal_send - RTEMS_INVALID_NUMBER
-TA1 - rtems_signal_send - RTEMS_NOT_DEFINED
 TA1 - rtems_port_create - RTEMS_INVALID_NAME
 TA1 - rtems_port_create - bad range - RTEMS_INVALID_ADDRESS
 TA1 - rtems_port_create - null id - RTEMS_INVALID_ADDRESS
diff --git a/testsuites/sptests/spsignal_err01/Makefile.am b/testsuites/sptests/spsignal_err01/Makefile.am
new file mode 100644
index 0000000..0cf4b89
--- /dev/null
+++ b/testsuites/sptests/spsignal_err01/Makefile.am
@@ -0,0 +1,22 @@
+
+rtems_tests_PROGRAMS = spsignal_err01
+spsignal_err01_SOURCES = init.c isr.c system.h
+
+dist_rtems_tests_DATA = spsignal_err01.scn
+dist_rtems_tests_DATA += spsignal_err01.doc
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
+include $(top_srcdir)/../automake/compile.am
+include $(top_srcdir)/../automake/leaf.am
+
+
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
+LINK_OBJS = $(spsignal_err01_OBJECTS)
+LINK_LIBS = $(spsignal_err01_LDLIBS)
+
+spsignal_err01$(EXEEXT): $(spsignal_err01_OBJECTS) $(spsignal_err01_DEPENDENCIES)
+	@rm -f spsignal_err01$(EXEEXT)
+	$(make-exe)
+
+include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/sptests/spsignal_err01/init.c b/testsuites/sptests/spsignal_err01/init.c
new file mode 100644
index 0000000..79b0e13
--- /dev/null
+++ b/testsuites/sptests/spsignal_err01/init.c
@@ -0,0 +1,52 @@
+/*
+ *  COPYRIGHT (c) 2014.
+ *  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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#define CONFIGURE_INIT
+#include "system.h"
+
+rtems_task Init(
+  rtems_task_argument argument
+)
+{
+  rtems_status_code status;
+
+  puts( "\n\n*** TEST SIGNAL SEND ERROR 01 ***" );
+  /* send invalid id */
+  status = rtems_signal_send( 100, RTEMS_SIGNAL_1 );
+  fatal_directive_status(
+    status,
+    RTEMS_INVALID_ID,
+    "rtems_signal_send with illegal id"
+  );
+  puts( "TA1 - rtems_signal_send - RTEMS_INVALID_ID" );
+
+  /* no signal in set */
+  status = rtems_signal_send( RTEMS_SELF, 0 );
+  fatal_directive_status(
+    status,
+    RTEMS_INVALID_NUMBER,
+    "rtems_signal_send with no signals"
+  );
+  puts( "TA1 - rtems_signal_send - RTEMS_INVALID_NUMBER" );
+
+  /* no signal handler */
+  status = rtems_signal_send( RTEMS_SELF, RTEMS_SIGNAL_16 );
+  fatal_directive_status(
+    status,
+    RTEMS_NOT_DEFINED,
+    "rtems_signal_send with no handler"
+  );
+  puts( "TA1 - rtems_signal_send - RTEMS_NOT_DEFINED" );
+
+  puts( "*** END TEST SIGNAL SEND ERROR 01 ***" );
+}
diff --git a/testsuites/sptests/spsignal_err01/isr.c b/testsuites/sptests/spsignal_err01/isr.c
new file mode 100644
index 0000000..31c7ab4
--- /dev/null
+++ b/testsuites/sptests/spsignal_err01/isr.c
@@ -0,0 +1,28 @@
+/*  Service_routine
+ *
+ *  This routine is used as the timer routine for Interrupt Manager tests.
+ *
+ *  Input parameters:
+ *    ignored - this parameter is ignored
+ *
+ *  Output parameters:  NONE
+ *
+ *  COPYRIGHT (c) 1989-1999.
+ *  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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "system.h"
+
+rtems_isr Service_routine(
+  rtems_vector_number ignored
+)
+{
+}
diff --git a/testsuites/sptests/spsignal_err01/spsignal_err01.doc b/testsuites/sptests/spsignal_err01/spsignal_err01.doc
new file mode 100644
index 0000000..7344164
--- /dev/null
+++ b/testsuites/sptests/spsignal_err01/spsignal_err01.doc
@@ -0,0 +1,25 @@
+#  COPYRIGHT (c) 1989-2014.
+#  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:  spsignal_err01
+
+directives:
+   as_send
+  
+concepts:
+
+  a.  Verifies all error codes returned by the executive in single
+      processor configurations.
+
+  b.  Verifies error conditions in the following kernel routines or macros:
+        _Ck_date_time, _Expired, _Q_submit, _Get_mnodes, _Get_node,
+        _Free_mem, _Get_mem, _Valid_block, _Set_tcb, _Set_resource,
+        _In_range, _On_boundary
diff --git a/testsuites/sptests/spsignal_err01/spsignal_err01.scn b/testsuites/sptests/spsignal_err01/spsignal_err01.scn
new file mode 100644
index 0000000..5a5a625
--- /dev/null
+++ b/testsuites/sptests/spsignal_err01/spsignal_err01.scn
@@ -0,0 +1,5 @@
+*** TEST SIGNAL SEND ERROR 01 ***
+TA1 - rtems_signal_send - RTEMS_INVALID_ID
+TA1 - rtems_signal_send - RTEMS_INVALID_NUMBER
+TA1 - rtems_signal_send - RTEMS_NOT_DEFINED
+*** END TEST SIGNAL SEND ERROR 01 ***
diff --git a/testsuites/sptests/spsignal_err01/system.h b/testsuites/sptests/spsignal_err01/system.h
new file mode 100644
index 0000000..76426b2
--- /dev/null
+++ b/testsuites/sptests/spsignal_err01/system.h
@@ -0,0 +1,64 @@
+/*
+ *  This include file contains information that is included in every
+ *  function in the test set.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2014.
+ *  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.
+ */
+
+#include <tmacros.h>
+
+/* functions */
+
+rtems_task Init(
+  rtems_task_argument argument
+);
+
+/* configuration information */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS              10
+#define CONFIGURE_MAXIMUM_TIMERS              1
+#define CONFIGURE_MAXIMUM_SEMAPHORES          2
+#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES      1
+#define CONFIGURE_MAXIMUM_PERIODS             1
+#define CONFIGURE_MAXIMUM_USER_EXTENSIONS     0
+#define CONFIGURE_TICKS_PER_TIMESLICE       100
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_EXTRA_TASK_STACKS         (20 * RTEMS_MINIMUM_STACK_SIZE)
+
+#include <rtems/confdefs.h>
+
+/* global variables */
+
+TEST_EXTERN rtems_id   Task_id[ 11 ];       /* array of task ids */
+TEST_EXTERN rtems_name Task_name[ 11 ];     /* array of task names */
+
+TEST_EXTERN rtems_name Semaphore_name[ 4 ]; /* array of semaphore names */
+TEST_EXTERN rtems_id   Semaphore_id[ 4 ];   /* array of semaphore ids */
+
+TEST_EXTERN rtems_name Queue_name[ 3 ];     /* array of queue names */
+TEST_EXTERN rtems_id   Queue_id[ 3 ];       /* array of queue ids */
+
+TEST_EXTERN rtems_name Port_name[ 2 ];      /* array of port names */
+TEST_EXTERN rtems_id   Port_id[ 2 ];        /* array of port ids */
+
+TEST_EXTERN rtems_name Period_name[ 2 ];    /* array of period names */
+TEST_EXTERN rtems_id   Period_id[ 2 ];      /* array of period ids */
+
+TEST_EXTERN rtems_id   Junk_id;             /* id used to return errors */
+
+#define Internal_port_area (void *) 0x00001000
+#define External_port_area (void *) 0x00002000
+
+/* end of include file */
-- 
1.8.1.4




More information about the devel mailing list