Francois Gouget : tests: Fix the wait_child_process_() macro in the no-line-number case.

Alexandre Julliard julliard at winehq.org
Thu Mar 19 16:27:47 CDT 2020


Module: wine
Branch: master
Commit: e6e77f146942ab4604ea403f2b566a24b153d18a
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e6e77f146942ab4604ea403f2b566a24b153d18a

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Thu Mar 19 10:22:20 2020 +0100

tests: Fix the wait_child_process_() macro in the no-line-number case.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/wine/test.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/wine/test.h b/include/wine/test.h
index 1bf178339f..9967094671 100644
--- a/include/wine/test.h
+++ b/include/wine/test.h
@@ -110,7 +110,7 @@ extern void __winetest_cdecl winetest_trace( const char *msg, ... ) __WINE_PRINT
 # define skip_(file, line)     (winetest_set_location(file, 0), 0) ? (void)0 : winetest_skip
 # define win_skip_(file, line) (winetest_set_location(file, 0), 0) ? (void)0 : winetest_win_skip
 # define trace_(file, line)    (winetest_set_location(file, 0), 0) ? (void)0 : winetest_trace
-# define wait_process_(file, line) (winetest_set_location(file, 0), 0) ? (void)0 : winetest_wait_process
+# define wait_child_process_(file, line) (winetest_set_location(file, 0), 0) ? (void)0 : winetest_wait_child_process
 #else
 # define subtest_(file, line)  (winetest_set_location(file, line), 0) ? (void)0 : winetest_subtest
 # define ok_(file, line)       (winetest_set_location(file, line), 0) ? (void)0 : winetest_ok




More information about the wine-cvs mailing list