about summary refs log tree commit diff stats
path: root/test/src/test-list.h
blob: abb7cda9f9ff2abc179153a657bd2b96e5fc4413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef TEST_SRC_TEST_LIST_H_
#define TEST_SRC_TEST_LIST_H_

#define TEST_ENUM(V)                                                          \
    V(uv_link_source_t)                                                       \
    V(uv_link_observer_t)                                                     \
    V(close_depth)                                                            \
    V(stop_read_on_error)                                                     \
    V(strerror)                                                               \

#define TEST_DECL(N) void test__##N();

TEST_ENUM(TEST_DECL)

#undef TEST_DECL

#define TEST_FN(N) test__##N
#define TEST_IMPL(N) void test__##N()

#endif  /* TEST_SRC_TEST_LIST_H_ */