forked from Imagelibrary/rtems
Rename this header file to later move <t.h> to <rtems/test.h>. The main feature provided by <rtems/test-info.h> is the output of standard test information which is consumed by the RTEMS Tester. Update #3199.
22 lines
348 B
C
22 lines
348 B
C
/*
|
|
* Support for running the test output through a buffer
|
|
*/
|
|
|
|
#ifndef __BUFFER_TEST_IO_h
|
|
#define __BUFFER_TEST_IO_h
|
|
|
|
#include <rtems/test-info.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define TEST_BEGIN() rtems_test_begin(rtems_test_name, TEST_STATE)
|
|
#define TEST_END() rtems_test_end(rtems_test_name)
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|