2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>

* minimum/Makefile.am: Link against all managers.
	* minimum/init.c: Use existing confdefs.h macros to turn off more
	this test does not use.
This commit is contained in:
Joel Sherrill
2008-06-05 14:21:38 +00:00
parent 5a820918f1
commit 5fe0640223
3 changed files with 19 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* minimum/Makefile.am: Link against all managers.
* minimum/init.c: Use existing confdefs.h macros to turn off more
this test does not use.
2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* iostream/system.h: Update to include definition of

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS =
MANAGERS = all
rtems_tests_PROGRAMS = minimum.exe
minimum_exe_SOURCES = init.c

View File

@@ -1,6 +1,6 @@
/* Minimum Size Application Initialization
*
* COPYRIGHT (c) 1989-2007.
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -39,6 +39,17 @@ rtems_task Init(
*/
#define CONFIGURE_DISABLE_NEWLIB_REENTRANCY
/*
* This test does not need the console driver so there is no reason
* to configure termios.
*/
#define CONFIGURE_TERMIOS_DISABLED
/*
* This test does not use any stdio.
*/
#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 0
#define CONFIGURE_INIT
#include <rtems/confdefs.h>