mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[WINE] test.h: Add wait_child_process
This commit is contained in:
parent
c150c0a456
commit
2fca81eca8
1 changed files with 2 additions and 0 deletions
|
@ -156,12 +156,14 @@ extern void winetest_pop_context(void);
|
|||
#define skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_skip
|
||||
#define win_skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_win_skip
|
||||
#define trace_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_trace
|
||||
#define wait_child_process_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_wait_child_process
|
||||
|
||||
#define subtest subtest_(__FILE__, __LINE__)
|
||||
#define ok ok_(__FILE__, __LINE__)
|
||||
#define skip skip_(__FILE__, __LINE__)
|
||||
#define win_skip win_skip_(__FILE__, __LINE__)
|
||||
#define trace trace_(__FILE__, __LINE__)
|
||||
#define wait_child_process wait_child_process_(__FILE__, __LINE__)
|
||||
|
||||
#define todo_if(is_todo) for (winetest_start_todo(is_todo); \
|
||||
winetest_loop_todo(); \
|
||||
|
|
Loading…
Reference in a new issue