summaryrefslogtreecommitdiff
path: root/testsuites/include/buffer_test_io.h
blob: f0eae50fbd54a5632cdcbf7a3b511ffd2b7ecb56 (plain)
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-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