summaryrefslogtreecommitdiffstats
path: root/testsuites/itrontests/itronhello
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 16:03:51 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 16:03:51 +0000
commit62812daba81dfec31cd3c49eb109121eb3d63e38 (patch)
tree75fc2c753130130eabc91a2eb3cc84fd335a34dd /testsuites/itrontests/itronhello
parent2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-62812daba81dfec31cd3c49eb109121eb3d63e38.tar.bz2
Remove (Abandoned)
Diffstat (limited to '')
-rw-r--r--testsuites/itrontests/itronhello/.cvsignore2
-rw-r--r--testsuites/itrontests/itronhello/Makefile.am28
-rw-r--r--testsuites/itrontests/itronhello/init.c33
-rw-r--r--testsuites/itrontests/itronhello/itronhello.doc23
-rw-r--r--testsuites/itrontests/itronhello/itronhello.scn3
-rw-r--r--testsuites/itrontests/itronhello/system.h41
6 files changed, 0 insertions, 130 deletions
diff --git a/testsuites/itrontests/itronhello/.cvsignore b/testsuites/itrontests/itronhello/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/testsuites/itrontests/itronhello/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/testsuites/itrontests/itronhello/Makefile.am b/testsuites/itrontests/itronhello/Makefile.am
deleted file mode 100644
index 9ad8162204..0000000000
--- a/testsuites/itrontests/itronhello/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-##
-## $Id$
-##
-
-MANAGERS = all
-
-rtems_tests_PROGRAMS = itronhello
-itronhello_SOURCES = init.c system.h
-
-dist_rtems_tests_DATA = itronhello.scn
-dist_rtems_tests_DATA += itronhello.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-itronhello_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
-
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(itronhello_OBJECTS) $(itronhello_LDADD)
-LINK_LIBS = $(itronhello_LDLIBS)
-
-itronhello$(EXEEXT): $(itronhello_OBJECTS) $(itronhello_DEPENDENCIES)
- @rm -f itronhello$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/itrontests/itronhello/init.c b/testsuites/itrontests/itronhello/init.c
deleted file mode 100644
index dfc7767732..0000000000
--- a/testsuites/itrontests/itronhello/init.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Init
- *
- * This routine is the initialization task for this test program.
- * It is called from init_exec 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: NONE
- *
- * 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.
- *
- * $Id$
- */
-
-#define CONFIGURE_INIT
-#include "system.h"
-#include <stdio.h>
-
-void ITRON_Init( void )
-{
- printf( "\n\n*** ITRON HELLO WORLD TEST ***\n" );
- printf( "Hello World\n" );
- printf( "*** END OF ITRON HELLO WORLD TEST ***\n" );
- rtems_test_exit( 0 );
-}
diff --git a/testsuites/itrontests/itronhello/itronhello.doc b/testsuites/itrontests/itronhello/itronhello.doc
deleted file mode 100644
index 086906938e..0000000000
--- a/testsuites/itrontests/itronhello/itronhello.doc
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# $Id$
-#
-# 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.
-#
-
-This file describes the directives and concepts tested by this test set.
-
-test set name: itronhello
-
-directives:
- cre_tsk, sta_tsk
-
-concepts:
-
- a. Verifies the initial itron task can be created and started.
-
-
diff --git a/testsuites/itrontests/itronhello/itronhello.scn b/testsuites/itrontests/itronhello/itronhello.scn
deleted file mode 100644
index 7acacc083b..0000000000
--- a/testsuites/itrontests/itronhello/itronhello.scn
+++ /dev/null
@@ -1,3 +0,0 @@
-*** ITRON HELLO WORLD TEST ***
-Hello World
-*** END OF ITRON HELLO WORLD TEST ***
diff --git a/testsuites/itrontests/itronhello/system.h b/testsuites/itrontests/itronhello/system.h
deleted file mode 100644
index 0a8d447448..0000000000
--- a/testsuites/itrontests/itronhello/system.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* system.h
- *
- * This include file contains information that is included in every
- * function in the test set.
- *
- * 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/itron.h>
-
-/* functions */
-
-void ITRON_Init( void );
-
-/* configuration information */
-
-/* NOTICE: the clock driver is explicitly disabled */
-#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-
-#define CONFIGURE_MAXIMUM_ITRON_TASKS 1
-
-#define CONFIGURE_ITRON_INIT_TASK_TABLE
-
-#define CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
-
-#include <rtems/confdefs.h>
-
-/* global variables */
-
-TEST_EXTERN rtems_id Global_variable; /* example global variable */
-
-/* end of include file */