2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>

* support/include/buffer_test_io.h: Add support for using printk for
	output in tests. This should be followed up by disabling the console
	driver and other support when the tests are using printk.
This commit is contained in:
Joel Sherrill
2007-05-11 19:53:29 +00:00
parent 9de4e5be47
commit 71531a6fa0
2 changed files with 155 additions and 85 deletions

View File

@@ -1,3 +1,9 @@
2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* support/include/buffer_test_io.h: Add support for using printk for
output in tests. This should be followed up by disabling the console
driver and other support when the tests are using printk.
2007-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-cpuopts.m4: Check rtems/system.h instead of

View File

@@ -11,37 +11,56 @@
extern "C" {
#endif
#include <stdlib.h>
/*
* Uncomment this to get buffered test output. When commented out,
* test output behaves as it always has and is printed ASAP.
* test output behaves as it always has and is printed using stdio.
*/
/* #define TESTS_BUFFER_OUTPUT */
/* #define TESTS_USE_PRINTK */
#if !defined(TESTS_BUFFER_OUTPUT)
/*
* USE PRINTK TO MINIMIZE SIZE
*/
#if defined(TESTS_USE_PRINTK)
#include <rtems/bspIo.h>
/* do not use iprintf if strict ansi mode */
#if defined(_NEWLIB_VERSION) && !defined(__STRICT_ANSI__)
#undef printf
#define printf(...) \
do { \
iprintf( __VA_ARGS__); \
printk( __VA_ARGS__); \
} while (0)
#endif
#undef puts
#define puts(_s) \
do { \
printk( "%s\n", _s); \
} while (0)
#undef putchar
#define putchar(_c) \
do { \
printk( "%c", _c ); \
} while (0)
/* Do not call exit() since it closes stdin, etc and pulls in stdio code */
#define rtems_test_exit(_s) \
do { \
exit(_s); \
rtems_shutdown_executive(0); \
} while (0)
#define FLUSH_OUTPUT() \
do { \
fflush(stdout); \
} while (0)
#else /* buffer test output */
/*
* BUFFER TEST OUTPUT
*/
#elif defined(TESTS_BUFFER_OUTPUT)
#include <stdio.h>
#include <stdlib.h>
#define _TEST_OUTPUT_BUFFER_SIZE 2048
extern char _test_output_buffer[_TEST_OUTPUT_BUFFER_SIZE];
@@ -116,8 +135,53 @@ void _test_output_flush(void)
tcdrain( 2 );
}
#endif /* TEST_INIT */
#endif /* TESTS_BUFFER_OUTPUT */
#endif
/*
* USE IPRINT
*/
#else
#include <stdio.h>
#include <stdlib.h>
/* do not use iprintf if strict ansi mode */
#if defined(_NEWLIB_VERSION) && !defined(__STRICT_ANSI__)
#undef printf
#define printf(...) \
do { \
fiprintf( stderr, __VA_ARGS__ ); \
} while (0)
#else
#undef printf
#define printf(...) \
do { \
fprintf( stderr, __VA_ARGS__ ); \
} while (0)
#endif
#undef puts
#define puts(_s) \
do { \
printf( "%s\n", _s ); \
} while (0)
#undef putchar
#define putchar(_c) \
do { \
printf( "%c", _c ); \
} while (0)
#define rtems_test_exit(_s) \
do { \
exit(_s); \
} while (0)
#define FLUSH_OUTPUT() \
do { \
fflush(stdout); \
} while (0)
#endif
#ifdef __cplusplus
};