https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2fca81eca8bb2a95efa72…
commit 2fca81eca8bb2a95efa7286619f442acd641ba8f
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Sat Oct 26 16:46:37 2024 +0300
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Wed Feb 12 16:54:45 2025 +0200
[WINE] test.h: Add wait_child_process
---
sdk/include/reactos/wine/test.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sdk/include/reactos/wine/test.h b/sdk/include/reactos/wine/test.h
index 4399a6f1714..35c2214e354 100644
--- a/sdk/include/reactos/wine/test.h
+++ b/sdk/include/reactos/wine/test.h
@@ -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(); \