forked from Imagelibrary/rtems
2002-08-01 Joel Sherrill <joel@OARcorp.com>
* Per PR47 add support for buffered test output. This involved adding defines to redirect output to a buffer and dump it when full, at "test pause", and at exit. To avoid problems when redefining exit(), all tests were modified to call rtems_test_exit(). Some tests, notable psxtests, had to be modified to include the standard test macro .h file (pmacros.h or tmacros.h) to enable this support. * include/buffer_test_io.h: New file.
This commit is contained in:
@@ -1,3 +1,13 @@
|
|||||||
|
2002-08-01 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR47 add support for buffered test output. This involved
|
||||||
|
adding defines to redirect output to a buffer and dump it when
|
||||||
|
full, at "test pause", and at exit. To avoid problems when redefining
|
||||||
|
exit(), all tests were modified to call rtems_test_exit().
|
||||||
|
Some tests, notable psxtests, had to be modified to include
|
||||||
|
the standard test macro .h file (pmacros.h or tmacros.h) to
|
||||||
|
enable this support.
|
||||||
|
* include/buffer_test_io.h: New file.
|
||||||
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|||||||
@@ -8,14 +8,18 @@ project_bspdir = $(PROJECT_ROOT)/@RTEMS_BSP@
|
|||||||
noinst_HEADERS = tmacros.h
|
noinst_HEADERS = tmacros.h
|
||||||
|
|
||||||
TMPINSTALLFILES = $(project_bspdir)/lib/include \
|
TMPINSTALLFILES = $(project_bspdir)/lib/include \
|
||||||
$(project_bspdir)/lib/include/tmacros.h
|
$(project_bspdir)/lib/include/tmacros.h \
|
||||||
|
$(project_bspdir)/lib/include/buffer_test_io.h
|
||||||
|
|
||||||
$(project_bspdir)/lib/include:
|
$(project_bspdir)/lib/include:
|
||||||
$(mkinstalldirs) $@
|
$(mkinstalldirs) $@
|
||||||
$(project_bspdir)/lib/include/tmacros.h: tmacros.h
|
$(project_bspdir)/lib/include/tmacros.h: tmacros.h
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
$(project_bspdir)/lib/include/buffer_test_io.h: buffer_test_io.h
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
CLEANFILES = $(project_bspdir)/lib/include/tmacros.h
|
CLEANFILES = $(project_bspdir)/lib/include/tmacros.h \
|
||||||
|
$(project_bspdir)/lib/include/buffer_test_io.h
|
||||||
|
|
||||||
all-local: $(TMPINSTALLFILES)
|
all-local: $(TMPINSTALLFILES)
|
||||||
|
|
||||||
|
|||||||
117
c/src/tests/support/include/buffer_test_io.h
Normal file
117
c/src/tests/support/include/buffer_test_io.h
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
/*
|
||||||
|
* Support for running the test output through a buffer
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __BUFFER_TEST_IO_h
|
||||||
|
#define __BUFFER_TEST_IO_h
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* #define TESTS_BUFFER_OUTPUT */
|
||||||
|
|
||||||
|
#if !defined(TESTS_BUFFER_OUTPUT)
|
||||||
|
|
||||||
|
#define rtems_test_exit(_s) \
|
||||||
|
do { \
|
||||||
|
exit(_s); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#define FLUSH_OUTPUT() \
|
||||||
|
do { \
|
||||||
|
fflush(stdout); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#else /* buffer test output */
|
||||||
|
|
||||||
|
#define _TEST_OUTPUT_BUFFER_SIZE 2048
|
||||||
|
extern char _test_output_buffer[_TEST_OUTPUT_BUFFER_SIZE];
|
||||||
|
void _test_output_append(char *);
|
||||||
|
void _test_output_flush(void);
|
||||||
|
|
||||||
|
#define rtems_test_exit(_s) \
|
||||||
|
do { \
|
||||||
|
_test_output_flush(); \
|
||||||
|
exit(_s); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#undef printf
|
||||||
|
#define printf(...) \
|
||||||
|
do { \
|
||||||
|
char _buffer[128]; \
|
||||||
|
sprintf( _buffer, __VA_ARGS__); \
|
||||||
|
_test_output_append( _buffer ); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#undef puts
|
||||||
|
#define puts(_string) \
|
||||||
|
do { \
|
||||||
|
char _buffer[128]; \
|
||||||
|
sprintf( _buffer, "%s\n", _string ); \
|
||||||
|
_test_output_append( _buffer ); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#undef putchar
|
||||||
|
#define putchar(_c) \
|
||||||
|
do { \
|
||||||
|
char _buffer[2]; \
|
||||||
|
_buffer[0] = _c; \
|
||||||
|
_buffer[1] = '\0'; \
|
||||||
|
_test_output_append( _buffer ); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
/* we write to stderr when there is a pause() */
|
||||||
|
#define FLUSH_OUTPUT() _test_output_flush()
|
||||||
|
|
||||||
|
#if defined(TEST_INIT) || defined(CONFIGURE_INIT)
|
||||||
|
|
||||||
|
char _test_output_buffer[_TEST_OUTPUT_BUFFER_SIZE];
|
||||||
|
int _test_output_buffer_index = 0;
|
||||||
|
|
||||||
|
void _test_output_append(char *_buffer)
|
||||||
|
{
|
||||||
|
char *p;
|
||||||
|
|
||||||
|
for ( p=_buffer ; *p ; p++ ) {
|
||||||
|
_test_output_buffer[_test_output_buffer_index++] = *p;
|
||||||
|
_test_output_buffer[_test_output_buffer_index] = '\0';
|
||||||
|
#if 0
|
||||||
|
if ( *p == '\n' ) {
|
||||||
|
fprintf( stderr, "BUFFER -- %s", _test_output_buffer );
|
||||||
|
_test_output_buffer_index = 0;
|
||||||
|
_test_output_buffer[0] = '\0';
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
if ( _test_output_buffer_index >= (_TEST_OUTPUT_BUFFER_SIZE - 80) )
|
||||||
|
_test_output_flush();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#include <termios.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
void _test_output_flush(void)
|
||||||
|
{
|
||||||
|
fprintf( stderr, "%s", _test_output_buffer );
|
||||||
|
_test_output_buffer_index = 0;
|
||||||
|
tcdrain( 2 );
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* TEST_INIT */
|
||||||
|
#endif /* TESTS_BUFFER_OUTPUT */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -37,14 +37,21 @@ extern "C" {
|
|||||||
#define TEST_EXTERN extern
|
#define TEST_EXTERN extern
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <buffer_test_io.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check that that the dispatch disable level is proper for the
|
||||||
|
* mode/state of the test. Normally it should be 0 when in task space.
|
||||||
|
*/
|
||||||
|
|
||||||
#define check_dispatch_disable_level( _expect ) \
|
#define check_dispatch_disable_level( _expect ) \
|
||||||
do { \
|
do { \
|
||||||
extern volatile rtems_unsigned32 _Thread_Dispatch_disable_level; \
|
extern volatile rtems_unsigned32 _Thread_Dispatch_disable_level; \
|
||||||
if ( (_expect) != -1 && _Thread_Dispatch_disable_level != (_expect) ) { \
|
if ( (_expect) != -1 && _Thread_Dispatch_disable_level != (_expect) ) { \
|
||||||
printf( "\n_Thread_Dispatch_disable_level is (%d) not %d\n", \
|
printf( "\n_Thread_Dispatch_disable_level is (%d) not %d\n", \
|
||||||
_Thread_Dispatch_disable_level, (_expect) ); \
|
_Thread_Dispatch_disable_level, (_expect) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( 1 ); \
|
rtems_test_exit( 1 ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -67,8 +74,8 @@ extern "C" {
|
|||||||
if ( (_stat) != (_desired) ) { \
|
if ( (_stat) != (_desired) ) { \
|
||||||
printf( "\n%s FAILED -- expected (%s) got (%s)\n", \
|
printf( "\n%s FAILED -- expected (%s) got (%s)\n", \
|
||||||
(_msg), rtems_status_text(_desired), rtems_status_text(_stat) ); \
|
(_msg), rtems_status_text(_desired), rtems_status_text(_stat) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( _stat ); \
|
rtems_test_exit( _stat ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -100,8 +107,8 @@ extern "C" {
|
|||||||
(_msg), _desired, strerror(_desired), _stat, strerror(_stat) ); \
|
(_msg), _desired, strerror(_desired), _stat, strerror(_stat) ); \
|
||||||
printf( "\n FAILED -- errno (%d - %s)\n", \
|
printf( "\n FAILED -- errno (%d - %s)\n", \
|
||||||
errno, strerror(errno) ); \
|
errno, strerror(errno) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( _stat ); \
|
rtems_test_exit( _stat ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -125,8 +132,8 @@ extern "C" {
|
|||||||
if ( (_stat) != (_desired) ) { \
|
if ( (_stat) != (_desired) ) { \
|
||||||
printf( "\n%s FAILED -- expected (%d) got (%d)\n", \
|
printf( "\n%s FAILED -- expected (%d) got (%d)\n", \
|
||||||
(_msg), (_desired), (_stat) ); \
|
(_msg), (_desired), (_stat) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( _stat ); \
|
rtems_test_exit( _stat ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -147,13 +154,12 @@ extern "C" {
|
|||||||
printf( "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
|
printf( "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
|
||||||
_s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
|
_s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
|
||||||
(_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
|
(_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
|
||||||
fflush(stdout); \
|
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
#define put_dot( _c ) \
|
#define put_dot( _c ) \
|
||||||
do { \
|
do { \
|
||||||
putchar( _c ); \
|
putchar( _c ); \
|
||||||
fflush( stdout ); \
|
FLUSH_OUTPUT(); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
#define new_line puts( "" )
|
#define new_line puts( "" )
|
||||||
@@ -163,18 +169,21 @@ extern "C" {
|
|||||||
#ifdef RTEMS_TEST_NO_PAUSE
|
#ifdef RTEMS_TEST_NO_PAUSE
|
||||||
#define rtems_test_pause() \
|
#define rtems_test_pause() \
|
||||||
do { \
|
do { \
|
||||||
printf( "<pause>\n" ); fflush( stdout ); \
|
printf( "<pause>\n" ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
#define rtems_test_pause_and_screen_number( _screen ) \
|
#define rtems_test_pause_and_screen_number( _screen ) \
|
||||||
do { \
|
do { \
|
||||||
printf( "<pause - screen %d>\n", (_screen) ); fflush( stdout ); \
|
printf( "<pause - screen %d>\n", (_screen) ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
#else
|
#else
|
||||||
#define rtems_test_pause() \
|
#define rtems_test_pause() \
|
||||||
do { \
|
do { \
|
||||||
char buffer[ 80 ]; \
|
char buffer[ 80 ]; \
|
||||||
printf( "<pause>" ); fflush( stdout ); \
|
printf( "<pause>" ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
gets( buffer ); \
|
gets( buffer ); \
|
||||||
puts( "" ); \
|
puts( "" ); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
@@ -182,7 +191,8 @@ extern "C" {
|
|||||||
#define rtems_test_pause_and_screen_number( _screen ) \
|
#define rtems_test_pause_and_screen_number( _screen ) \
|
||||||
do { \
|
do { \
|
||||||
char buffer[ 80 ]; \
|
char buffer[ 80 ]; \
|
||||||
printf( "<pause - screen %d>", (_screen) ); fflush( stdout ); \
|
printf( "<pause - screen %d>", (_screen) ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
gets( buffer ); \
|
gets( buffer ); \
|
||||||
puts( "" ); \
|
puts( "" ); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
2002-08-01 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR47 add support for buffered test output. This involved
|
||||||
|
adding defines to redirect output to a buffer and dump it when
|
||||||
|
full, at "test pause", and at exit. To avoid problems when redefining
|
||||||
|
exit(), all tests were modified to call rtems_test_exit().
|
||||||
|
Some tests, notable psxtests, had to be modified to include
|
||||||
|
the standard test macro .h file (pmacros.h or tmacros.h) to
|
||||||
|
enable this support.
|
||||||
|
* include/buffer_test_io.h: New file.
|
||||||
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|||||||
117
testsuites/support/include/buffer_test_io.h
Normal file
117
testsuites/support/include/buffer_test_io.h
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
/*
|
||||||
|
* Support for running the test output through a buffer
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __BUFFER_TEST_IO_h
|
||||||
|
#define __BUFFER_TEST_IO_h
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* #define TESTS_BUFFER_OUTPUT */
|
||||||
|
|
||||||
|
#if !defined(TESTS_BUFFER_OUTPUT)
|
||||||
|
|
||||||
|
#define rtems_test_exit(_s) \
|
||||||
|
do { \
|
||||||
|
exit(_s); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#define FLUSH_OUTPUT() \
|
||||||
|
do { \
|
||||||
|
fflush(stdout); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#else /* buffer test output */
|
||||||
|
|
||||||
|
#define _TEST_OUTPUT_BUFFER_SIZE 2048
|
||||||
|
extern char _test_output_buffer[_TEST_OUTPUT_BUFFER_SIZE];
|
||||||
|
void _test_output_append(char *);
|
||||||
|
void _test_output_flush(void);
|
||||||
|
|
||||||
|
#define rtems_test_exit(_s) \
|
||||||
|
do { \
|
||||||
|
_test_output_flush(); \
|
||||||
|
exit(_s); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#undef printf
|
||||||
|
#define printf(...) \
|
||||||
|
do { \
|
||||||
|
char _buffer[128]; \
|
||||||
|
sprintf( _buffer, __VA_ARGS__); \
|
||||||
|
_test_output_append( _buffer ); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#undef puts
|
||||||
|
#define puts(_string) \
|
||||||
|
do { \
|
||||||
|
char _buffer[128]; \
|
||||||
|
sprintf( _buffer, "%s\n", _string ); \
|
||||||
|
_test_output_append( _buffer ); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#undef putchar
|
||||||
|
#define putchar(_c) \
|
||||||
|
do { \
|
||||||
|
char _buffer[2]; \
|
||||||
|
_buffer[0] = _c; \
|
||||||
|
_buffer[1] = '\0'; \
|
||||||
|
_test_output_append( _buffer ); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
/* we write to stderr when there is a pause() */
|
||||||
|
#define FLUSH_OUTPUT() _test_output_flush()
|
||||||
|
|
||||||
|
#if defined(TEST_INIT) || defined(CONFIGURE_INIT)
|
||||||
|
|
||||||
|
char _test_output_buffer[_TEST_OUTPUT_BUFFER_SIZE];
|
||||||
|
int _test_output_buffer_index = 0;
|
||||||
|
|
||||||
|
void _test_output_append(char *_buffer)
|
||||||
|
{
|
||||||
|
char *p;
|
||||||
|
|
||||||
|
for ( p=_buffer ; *p ; p++ ) {
|
||||||
|
_test_output_buffer[_test_output_buffer_index++] = *p;
|
||||||
|
_test_output_buffer[_test_output_buffer_index] = '\0';
|
||||||
|
#if 0
|
||||||
|
if ( *p == '\n' ) {
|
||||||
|
fprintf( stderr, "BUFFER -- %s", _test_output_buffer );
|
||||||
|
_test_output_buffer_index = 0;
|
||||||
|
_test_output_buffer[0] = '\0';
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
if ( _test_output_buffer_index >= (_TEST_OUTPUT_BUFFER_SIZE - 80) )
|
||||||
|
_test_output_flush();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#include <termios.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
void _test_output_flush(void)
|
||||||
|
{
|
||||||
|
fprintf( stderr, "%s", _test_output_buffer );
|
||||||
|
_test_output_buffer_index = 0;
|
||||||
|
tcdrain( 2 );
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* TEST_INIT */
|
||||||
|
#endif /* TESTS_BUFFER_OUTPUT */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -37,14 +37,21 @@ extern "C" {
|
|||||||
#define TEST_EXTERN extern
|
#define TEST_EXTERN extern
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <buffer_test_io.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check that that the dispatch disable level is proper for the
|
||||||
|
* mode/state of the test. Normally it should be 0 when in task space.
|
||||||
|
*/
|
||||||
|
|
||||||
#define check_dispatch_disable_level( _expect ) \
|
#define check_dispatch_disable_level( _expect ) \
|
||||||
do { \
|
do { \
|
||||||
extern volatile rtems_unsigned32 _Thread_Dispatch_disable_level; \
|
extern volatile rtems_unsigned32 _Thread_Dispatch_disable_level; \
|
||||||
if ( (_expect) != -1 && _Thread_Dispatch_disable_level != (_expect) ) { \
|
if ( (_expect) != -1 && _Thread_Dispatch_disable_level != (_expect) ) { \
|
||||||
printf( "\n_Thread_Dispatch_disable_level is (%d) not %d\n", \
|
printf( "\n_Thread_Dispatch_disable_level is (%d) not %d\n", \
|
||||||
_Thread_Dispatch_disable_level, (_expect) ); \
|
_Thread_Dispatch_disable_level, (_expect) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( 1 ); \
|
rtems_test_exit( 1 ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -67,8 +74,8 @@ extern "C" {
|
|||||||
if ( (_stat) != (_desired) ) { \
|
if ( (_stat) != (_desired) ) { \
|
||||||
printf( "\n%s FAILED -- expected (%s) got (%s)\n", \
|
printf( "\n%s FAILED -- expected (%s) got (%s)\n", \
|
||||||
(_msg), rtems_status_text(_desired), rtems_status_text(_stat) ); \
|
(_msg), rtems_status_text(_desired), rtems_status_text(_stat) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( _stat ); \
|
rtems_test_exit( _stat ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -100,8 +107,8 @@ extern "C" {
|
|||||||
(_msg), _desired, strerror(_desired), _stat, strerror(_stat) ); \
|
(_msg), _desired, strerror(_desired), _stat, strerror(_stat) ); \
|
||||||
printf( "\n FAILED -- errno (%d - %s)\n", \
|
printf( "\n FAILED -- errno (%d - %s)\n", \
|
||||||
errno, strerror(errno) ); \
|
errno, strerror(errno) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( _stat ); \
|
rtems_test_exit( _stat ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -125,8 +132,8 @@ extern "C" {
|
|||||||
if ( (_stat) != (_desired) ) { \
|
if ( (_stat) != (_desired) ) { \
|
||||||
printf( "\n%s FAILED -- expected (%d) got (%d)\n", \
|
printf( "\n%s FAILED -- expected (%d) got (%d)\n", \
|
||||||
(_msg), (_desired), (_stat) ); \
|
(_msg), (_desired), (_stat) ); \
|
||||||
fflush(stdout); \
|
FLUSH_OUTPUT(); \
|
||||||
exit( _stat ); \
|
rtems_test_exit( _stat ); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
@@ -147,13 +154,12 @@ extern "C" {
|
|||||||
printf( "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
|
printf( "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
|
||||||
_s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
|
_s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
|
||||||
(_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
|
(_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
|
||||||
fflush(stdout); \
|
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
#define put_dot( _c ) \
|
#define put_dot( _c ) \
|
||||||
do { \
|
do { \
|
||||||
putchar( _c ); \
|
putchar( _c ); \
|
||||||
fflush( stdout ); \
|
FLUSH_OUTPUT(); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
#define new_line puts( "" )
|
#define new_line puts( "" )
|
||||||
@@ -163,18 +169,21 @@ extern "C" {
|
|||||||
#ifdef RTEMS_TEST_NO_PAUSE
|
#ifdef RTEMS_TEST_NO_PAUSE
|
||||||
#define rtems_test_pause() \
|
#define rtems_test_pause() \
|
||||||
do { \
|
do { \
|
||||||
printf( "<pause>\n" ); fflush( stdout ); \
|
printf( "<pause>\n" ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|
||||||
#define rtems_test_pause_and_screen_number( _screen ) \
|
#define rtems_test_pause_and_screen_number( _screen ) \
|
||||||
do { \
|
do { \
|
||||||
printf( "<pause - screen %d>\n", (_screen) ); fflush( stdout ); \
|
printf( "<pause - screen %d>\n", (_screen) ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
#else
|
#else
|
||||||
#define rtems_test_pause() \
|
#define rtems_test_pause() \
|
||||||
do { \
|
do { \
|
||||||
char buffer[ 80 ]; \
|
char buffer[ 80 ]; \
|
||||||
printf( "<pause>" ); fflush( stdout ); \
|
printf( "<pause>" ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
gets( buffer ); \
|
gets( buffer ); \
|
||||||
puts( "" ); \
|
puts( "" ); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
@@ -182,7 +191,8 @@ extern "C" {
|
|||||||
#define rtems_test_pause_and_screen_number( _screen ) \
|
#define rtems_test_pause_and_screen_number( _screen ) \
|
||||||
do { \
|
do { \
|
||||||
char buffer[ 80 ]; \
|
char buffer[ 80 ]; \
|
||||||
printf( "<pause - screen %d>", (_screen) ); fflush( stdout ); \
|
printf( "<pause - screen %d>", (_screen) ); \
|
||||||
|
FLUSH_OUTPUT(); \
|
||||||
gets( buffer ); \
|
gets( buffer ); \
|
||||||
puts( "" ); \
|
puts( "" ); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
|
|||||||
Reference in New Issue
Block a user