From b9a1642778da0abbadd527e7d3558c154245ed47 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 2 Feb 2011 07:39:07 +0000 Subject: [PATCH] =?UTF-8?q?2011-02-02=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * math/init.c: Use fprintf(stdout,..) instead of printf. Use CONFIGURE_APPLICATION_DISABLE_FILESYSTEM. --- testsuites/libtests/ChangeLog | 6 ++++++ testsuites/libtests/math/init.c | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog index 1f24f55d00..29a6b4898b 100644 --- a/testsuites/libtests/ChangeLog +++ b/testsuites/libtests/ChangeLog @@ -1,3 +1,9 @@ +2011-02-02 Ralf Corsépius + + * math/init.c: + Use fprintf(stdout,..) instead of printf. + Use CONFIGURE_APPLICATION_DISABLE_FILESYSTEM. + 2011-01-27 Ralf Corsépius * math/math.scn: New. diff --git a/testsuites/libtests/math/init.c b/testsuites/libtests/math/init.c index 8cefe0f261..319efd0439 100644 --- a/testsuites/libtests/math/init.c +++ b/testsuites/libtests/math/init.c @@ -39,13 +39,13 @@ rtems_task Init( int main( void ) #endif { - printf( "*** FLOAT MATH TEST ***\n" ); + fprintf( stdout, "*** FLOAT MATH TEST ***\n" ); domath(); domathf(); domathl(); - printf( "*** END OF FLOAT MATH TEST ***\n" ); + fprintf( stdout, "*** END OF FLOAT MATH TEST ***\n" ); exit( 0 ); } @@ -57,7 +57,7 @@ int main( void ) #define CONFIGURE_MAXIMUM_TASKS 1 #define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT -#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM +#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM #define CONFIGURE_RTEMS_INIT_TASKS_TABLE