summaryrefslogtreecommitdiffstats
path: root/testsuites/ada/mptests/mp11/node2
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/ada/mptests/mp11/node2')
-rw-r--r--testsuites/ada/mptests/mp11/node2/Makefile.am19
-rw-r--r--testsuites/ada/mptests/mp11/node2/ada_mp11-node2.scn2
-rw-r--r--testsuites/ada/mptests/mp11/node2/config.h21
-rw-r--r--testsuites/ada/mptests/mp11/node2/mp11_node2.adb56
4 files changed, 98 insertions, 0 deletions
diff --git a/testsuites/ada/mptests/mp11/node2/Makefile.am b/testsuites/ada/mptests/mp11/node2/Makefile.am
new file mode 100644
index 0000000000..7055fcc093
--- /dev/null
+++ b/testsuites/ada/mptests/mp11/node2/Makefile.am
@@ -0,0 +1,19 @@
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+noinst_PROGRAMS = mp11_ada_mp11_node2
+mp11_ada_mp11_node2_SOURCES = mp11_node2.adb ../mptest.adb config.h
+mp11_ada_mp11_node2_SOURCES += ../mptest.ads
+mp11_ada_mp11_node2_SOURCES += ../../../support/init.c
+
+mp11_ada_mp11_node2$(EXEEXT): mp11_node2.adb ../mptest.adb init.$(OBJEXT)
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+scndir = $(rtems_ada_testsdir)
+dist_scn_DATA = ada_mp11-node2.scn
+
+include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/ada/mptests/mp11/node2/ada_mp11-node2.scn b/testsuites/ada/mptests/mp11/node2/ada_mp11-node2.scn
new file mode 100644
index 0000000000..49bd8a3219
--- /dev/null
+++ b/testsuites/ada/mptests/mp11/node2/ada_mp11-node2.scn
@@ -0,0 +1,2 @@
+*** TEST 11 -- NODE 2 ***
+*** END OF TEST 11 ***
diff --git a/testsuites/ada/mptests/mp11/node2/config.h b/testsuites/ada/mptests/mp11/node2/config.h
new file mode 100644
index 0000000000..47edf66149
--- /dev/null
+++ b/testsuites/ada/mptests/mp11/node2/config.h
@@ -0,0 +1,21 @@
+/* config.h
+ *
+ * This include file defines the Configuration Table for this test.
+ *
+ * COPYRIGHT (c) 1989-2007.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may in
+ * the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+
+/* configuration information */
+
+#define CONFIGURE_MP_APPLICATION
+#define CONFIGURE_MP_NODE_NUMBER 2
+
+#include "../config_base.h"
+
+/* end of include file */
diff --git a/testsuites/ada/mptests/mp11/node2/mp11_node2.adb b/testsuites/ada/mptests/mp11/node2/mp11_node2.adb
new file mode 100644
index 0000000000..601b21574b
--- /dev/null
+++ b/testsuites/ada/mptests/mp11/node2/mp11_node2.adb
@@ -0,0 +1,56 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test MP11_NODE2 of the Multiprocessor
+-- Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-2011.
+-- On-Line Applications Research Corporation (OAR).
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.rtems.org/license/LICENSE.
+--
+
+with RTEMS;
+with RTEMS.TASKS;
+with MPTEST;
+with TEST_SUPPORT;
+
+procedure MP11_NODE2 is
+ INIT_ID : RTEMS.ID;
+ STATUS : RTEMS.STATUS_CODES;
+begin
+
+ RTEMS.TASKS.CREATE(
+ RTEMS.BUILD_NAME( 'I', 'N', 'I', 'T' ),
+ 1,
+ RTEMS.MINIMUM_STACK_SIZE,
+ RTEMS.NO_PREEMPT,
+ RTEMS.DEFAULT_ATTRIBUTES,
+ INIT_ID,
+ STATUS
+ );
+ TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "TASK_CREATE OF INIT" );
+
+
+ RTEMS.TASKS.START(
+ INIT_ID,
+ MPTEST.INIT'ACCESS,
+ 0,
+ STATUS
+ );
+ TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "TASK_START OF INIT" );
+
+ loop
+ delay 120.0;
+ end loop;
+
+end MP11_NODE2;
+