From 62812daba81dfec31cd3c49eb109121eb3d63e38 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 17 Jun 2010 16:03:51 +0000 Subject: Remove (Abandoned) --- testsuites/itrontests/itronhello/.cvsignore | 2 -- testsuites/itrontests/itronhello/Makefile.am | 28 ----------------- testsuites/itrontests/itronhello/init.c | 33 -------------------- testsuites/itrontests/itronhello/itronhello.doc | 23 -------------- testsuites/itrontests/itronhello/itronhello.scn | 3 -- testsuites/itrontests/itronhello/system.h | 41 ------------------------- 6 files changed, 130 deletions(-) delete mode 100644 testsuites/itrontests/itronhello/.cvsignore delete mode 100644 testsuites/itrontests/itronhello/Makefile.am delete mode 100644 testsuites/itrontests/itronhello/init.c delete mode 100644 testsuites/itrontests/itronhello/itronhello.doc delete mode 100644 testsuites/itrontests/itronhello/itronhello.scn delete mode 100644 testsuites/itrontests/itronhello/system.h (limited to 'testsuites/itrontests/itronhello') 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 - -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 -#include - -/* 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 - -/* global variables */ - -TEST_EXTERN rtems_id Global_variable; /* example global variable */ - -/* end of include file */ -- cgit v1.2.3