summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-06-05 14:21:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-06-05 14:21:38 +0000
commit5fe0640223b377dcb590335189fdbcf4f3b29ac1 (patch)
tree21664ca3d35c12ba54d21389d4cfe481791c6cc0 /testsuites
parentRemove. (diff)
downloadrtems-5fe0640223b377dcb590335189fdbcf4f3b29ac1.tar.bz2
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.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/samples/ChangeLog6
-rw-r--r--testsuites/samples/minimum/Makefile.am2
-rw-r--r--testsuites/samples/minimum/init.c13
3 files changed, 19 insertions, 2 deletions
diff --git a/testsuites/samples/ChangeLog b/testsuites/samples/ChangeLog
index e8a6371c09..3df6a1659f 100644
--- a/testsuites/samples/ChangeLog
+++ b/testsuites/samples/ChangeLog
@@ -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
diff --git a/testsuites/samples/minimum/Makefile.am b/testsuites/samples/minimum/Makefile.am
index e846b3bfe3..7275dedbdd 100644
--- a/testsuites/samples/minimum/Makefile.am
+++ b/testsuites/samples/minimum/Makefile.am
@@ -2,7 +2,7 @@
## $Id$
##
-MANAGERS =
+MANAGERS = all
rtems_tests_PROGRAMS = minimum.exe
minimum_exe_SOURCES = init.c
diff --git a/testsuites/samples/minimum/init.c b/testsuites/samples/minimum/init.c
index ea95d8ba1d..e41fc860c5 100644
--- a/testsuites/samples/minimum/init.c
+++ b/testsuites/samples/minimum/init.c
@@ -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>