From 6fc0d9a479687bba9aeacd82d2215ef54c1e18d0 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 2 Feb 2011 07:36:25 +0000 Subject: =?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, complex/init.c: Use fprintf(stdout,..) instead of printf. Use CONFIGURE_APPLICATION_DISABLE_FILESYSTEM. --- testsuites/libtests/ChangeLog | 6 ++++++ testsuites/libtests/complex/init.c | 6 +++--- testsuites/libtests/math/init.c | 6 +++--- 3 files changed, 12 insertions(+), 6 deletions(-) (limited to 'testsuites') diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog index a116eb20bd..7ea1278a9d 100644 --- a/testsuites/libtests/ChangeLog +++ b/testsuites/libtests/ChangeLog @@ -1,3 +1,9 @@ +2011-02-02 Ralf Corsépius + + * math/init.c, complex/init.c: + Use fprintf(stdout,..) instead of printf. + Use CONFIGURE_APPLICATION_DISABLE_FILESYSTEM. + 2011-01-31 Ralf Corsépius * POSIX/clock_gettime.c, POSIX/gettimeofday.c: New. diff --git a/testsuites/libtests/complex/init.c b/testsuites/libtests/complex/init.c index 7f132f40a8..c4a325c8ad 100644 --- a/testsuites/libtests/complex/init.c +++ b/testsuites/libtests/complex/init.c @@ -41,14 +41,14 @@ rtems_task Init( int main( void ) #endif { - printf( "*** COMPLEX MATH TEST ***\n" ); + fprintf( stdout, "*** COMPLEX MATH TEST ***\n" ); docomplex(); docomplexf(); #ifndef NO_LONG_DOUBLE docomplexl(); #endif - printf( "*** END OF COMPLEX MATH TEST ***\n" ); + fprintf( stdout, "*** END OF COMPLEX MATH TEST ***\n" ); exit( 0 ); } @@ -58,7 +58,7 @@ int main( void ) #define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER #define CONFIGURE_MAXIMUM_TASKS 1 -#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM +#define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM #define CONFIGURE_RTEMS_INIT_TASKS_TABLE 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 -- cgit v1.2.3