summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/buffer_test_io.h
blob: ea68fea0d8b16ab44b47e1df36ed47a00aaa8b84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 *  Support for running the test output through a buffer
 */

#ifndef __BUFFER_TEST_IO_h
#define __BUFFER_TEST_IO_h

#include <rtems/test.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