summaryrefslogtreecommitdiffstats
path: root/c/src/tests/sptests/sp23
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/sptests/sp23')
-rw-r--r--c/src/tests/sptests/sp23/init.c72
-rw-r--r--c/src/tests/sptests/sp23/sp23.doc26
-rw-r--r--c/src/tests/sptests/sp23/sp23.scn9
-rw-r--r--c/src/tests/sptests/sp23/system.h30
-rw-r--r--c/src/tests/sptests/sp23/task1.c96
5 files changed, 233 insertions, 0 deletions
diff --git a/c/src/tests/sptests/sp23/init.c b/c/src/tests/sptests/sp23/init.c
new file mode 100644
index 0000000000..5acaf67e42
--- /dev/null
+++ b/c/src/tests/sptests/sp23/init.c
@@ -0,0 +1,72 @@
+/* Init
+ *
+ * This routine is the initialization task for this test program.
+ * It is a user initialization task and has the responsibility for creating
+ * and starting the tasks that make up the test. If the time of day
+ * clock is required for the test, it should also be set to a known
+ * value by this function.
+ *
+ * Input parameters:
+ * argument - task argument
+ *
+ * Output parameters: NONE
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
+ * On-Line Applications Research Corporation (OAR).
+ * All rights assigned to U.S. Government, 1994.
+ *
+ * This material may be reproduced by or for the U.S. Government pursuant
+ * to the copyright license under the clause at DFARS 252.227-7013. This
+ * notice must appear in all copies of this file and its derivatives.
+ *
+ * $Id$
+ */
+
+#include "system.h"
+#undef EXTERN
+#define EXTERN
+#include "conftbl.h"
+#include "gvar.h"
+
+rtems_task Init(
+ rtems_task_argument argument
+)
+{
+ rtems_status_code status;
+
+ puts( "\n\n*** TEST 23 ***" );
+
+ Task_name[ 1 ] = rtems_build_name( 'T', 'A', '1', ' ' );
+
+ status = rtems_task_create(
+ Task_name[ 1 ],
+ 1,
+ 2048,
+ RTEMS_DEFAULT_MODES,
+ RTEMS_DEFAULT_ATTRIBUTES,
+ &Task_id[ 1 ]
+ );
+ directive_failed( status, "rtems_task_create of TA1" );
+
+ status = rtems_task_start( Task_id[ 1 ], Task_1, 0 );
+ directive_failed( status, "rtems_task_start of TA1" );
+
+ Port_name[ 1 ] = rtems_build_name( 'D', 'P', '1', ' ' );
+
+ status = rtems_port_create(
+ Port_name[ 1 ],
+ Internal_port_area,
+ External_port_area,
+ 0xff,
+ &Port_id[ 1 ]
+ );
+ directive_failed( status, "rtems_port_create of DP1" );
+
+ printf( "INIT - rtems_port_create - DP1 - int = %p ext = %p\n",
+ Internal_port_area,
+ External_port_area
+ );
+
+ status = rtems_task_delete( RTEMS_SELF );
+ directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
+}
diff --git a/c/src/tests/sptests/sp23/sp23.doc b/c/src/tests/sptests/sp23/sp23.doc
new file mode 100644
index 0000000000..485a4ec466
--- /dev/null
+++ b/c/src/tests/sptests/sp23/sp23.doc
@@ -0,0 +1,26 @@
+#
+# $Id$
+#
+# COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
+# On-Line Applications Research Corporation (OAR).
+# All rights assigned to U.S. Government, 1994.
+#
+# This material may be reproduced by or for the U.S. Government pursuant
+# to the copyright license under the clause at DFARS 252.227-7013. This
+# notice must appear in all copies of this file and its derivatives.
+#
+
+
+This file describes the directives and concepts tested by this test set.
+
+test set name: test23
+
+directives:
+ ex_init, ex_start, t_create, t_start, tm_tick, i_return, t_delete,
+ m_ext2int, m_int2ext
+
+concepts:
+
+ a. Verifies the dual ported RAM directives work correctly.
+
+output:
diff --git a/c/src/tests/sptests/sp23/sp23.scn b/c/src/tests/sptests/sp23/sp23.scn
new file mode 100644
index 0000000000..7529abd4c4
--- /dev/null
+++ b/c/src/tests/sptests/sp23/sp23.scn
@@ -0,0 +1,9 @@
+*** TEST 23 ***
+INIT - rtems_port_create - DP1 - int = 0x00001000 ext = 0x00002000
+TA1 - rtems_port_ident - 00010001
+TA1 - rtems_port_external_to_internal - 0x0000200e => 0x0000100e
+TA1 - rtems_port_internal_to_external - 0x0000100e => 0x0000200e
+TA1 - rtems_port_external_to_internal - 0x0000300e => 0x0000300e
+TA1 - rtems_port_internal_to_external - 0x0000050e => 0x0000050e
+TA1 - rtems_port_delete - DP1
+*** END OF TEST 23 ***
diff --git a/c/src/tests/sptests/sp23/system.h b/c/src/tests/sptests/sp23/system.h
new file mode 100644
index 0000000000..aa2c6d17e4
--- /dev/null
+++ b/c/src/tests/sptests/sp23/system.h
@@ -0,0 +1,30 @@
+/* system.h
+ *
+ * This include file contains information that is included in every
+ * function in the test set.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
+ * On-Line Applications Research Corporation (OAR).
+ * All rights assigned to U.S. Government, 1994.
+ *
+ * This material may be reproduced by or for the U.S. Government pursuant
+ * to the copyright license under the clause at DFARS 252.227-7013. This
+ * notice must appear in all copies of this file and its derivatives.
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include "tmacros.h"
+
+/* Miscellaneous */
+
+#define EXTERN extern /* external definition */
+
+/* macros */
+
+/* structures */
+
+#include "gvar.h"
+
+/* end of include file */
diff --git a/c/src/tests/sptests/sp23/task1.c b/c/src/tests/sptests/sp23/task1.c
new file mode 100644
index 0000000000..5012616131
--- /dev/null
+++ b/c/src/tests/sptests/sp23/task1.c
@@ -0,0 +1,96 @@
+/* Task_1
+ *
+ * This task verifies that the dual ported RAM directives work
+ * correctly by converting external addresses to internal addresses and
+ * internal addresses to external addresses.
+ *
+ * Input parameters:
+ * argument - task argument
+ *
+ * Output parameters: NONE
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
+ * On-Line Applications Research Corporation (OAR).
+ * All rights assigned to U.S. Government, 1994.
+ *
+ * This material may be reproduced by or for the U.S. Government pursuant
+ * to the copyright license under the clause at DFARS 252.227-7013. This
+ * notice must appear in all copies of this file and its derivatives.
+ *
+ * $Id$
+ */
+
+#include "system.h"
+
+rtems_task Task_1(
+ rtems_task_argument argument
+)
+{
+ rtems_id dpid;
+ void *to_be_converted;
+ void *converted;
+ rtems_status_code status;
+
+ status = rtems_port_ident( Port_name[ 1 ], &dpid );
+ directive_failed( status, "rtems_port_ident" );
+ printf( "TA1 - rtems_port_ident - %08x\n", dpid );
+
+ to_be_converted = &External_port_area[ 0xe ];
+ status = rtems_port_external_to_internal(
+ Port_id[ 1 ],
+ to_be_converted,
+ &converted
+ );
+ directive_failed( status, "rtems_port_external_to_internal" );
+ printf(
+ "TA1 - rtems_port_external_to_internal - %p => %p\n",
+ to_be_converted,
+ converted
+ );
+
+ to_be_converted = &Internal_port_area[ 0xe ];
+ status = rtems_port_internal_to_external(
+ Port_id[ 1 ],
+ to_be_converted,
+ &converted
+ );
+ directive_failed( status, "rtems_port_internal_to_external" );
+ printf(
+ "TA1 - rtems_port_internal_to_external - %p => %p\n",
+ to_be_converted,
+ converted
+ );
+
+ to_be_converted = &Above_port_area[ 0xe ];
+ status = rtems_port_external_to_internal(
+ Port_id[ 1 ],
+ to_be_converted,
+ &converted
+ );
+ directive_failed( status, "rtems_port_external_to_internal" );
+ printf(
+ "TA1 - rtems_port_external_to_internal - %p => %p\n",
+ to_be_converted,
+ converted
+ );
+
+ to_be_converted = &Below_port_area[ 0xe ];
+ status = rtems_port_internal_to_external(
+ Port_id[ 1 ],
+ to_be_converted,
+ &converted
+ );
+ directive_failed( status, "rtems_port_internal_to_external" );
+ printf(
+ "TA1 - rtems_port_internal_to_external - %p => %p\n",
+ to_be_converted,
+ converted
+ );
+
+ status = rtems_port_delete( Port_id[ 1 ] );
+ directive_failed( status, "rtems_port_delete" );
+ puts( "TA1 - rtems_port_delete - DP1" );
+
+ puts( "*** END OF TEST 23 ***" );
+ exit( 0 );
+}