summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/buffer_test_io.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sapi: Add <rtems/test.h>Sebastian Huber2014-03-171-0/+16
| | | | | | Provide support functions to print the begin/end of test message. Provide a test fatal extension to print out profiling reports in the future.
* testsuites: Add TESTS_USE_PRINTFSebastian Huber2014-02-121-0/+16
| | | | | Make it possible to use normal printf() if requested to allow output of floating point numbers.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* 2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-08-061-1/+3
| | | | * support/include/buffer_test_io.h: Use printk on AVR by default.
* 2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-05-111-96/+160
| | | | | | * 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.
* 2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-11-221-1/+1
| | | | | * include/buffer_test_io.h: Use iprintf iff _NEWLIB_VERSION is defined.
* Remove stray white spaces.Ralf Corsepius2004-04-201-6/+6
|
* 2004-03-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2004-03-031-1/+1
| | | | * include/buffer_test_io.h: Correct typo.
* 2004-02-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2004-02-041-0/+3
| | | | | * include/buffer_test_io.h: Do not use iprintf() if in ANSI compiler mode.
* 2003-12-16 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-12-161-0/+6
| | | | | | PR 544/tests * include/buffer_test_io.h: Various modifications to make tests account for resources and not print at inappropriate times.
* 2002-08-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2002-08-021-0/+117
* 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.