Module: wine
Branch: master
Commit: 405fd5927a2d6d6266fe7492b82c0c52f22810a0
URL: https://source.winehq.org/git/wine.git/?a=commit;h=405fd5927a2d6d6266fe7492…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Tue Mar 24 13:50:52 2020 +0100
kernel32/tests: Fix the grammar and formatting of a process comment.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/kernel32/tests/process.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/dlls/kernel32/tests/process.c b/dlls/kernel32/tests/process.c
index 7f7c015947..3281804233 100644
--- a/dlls/kernel32/tests/process.c
+++ b/dlls/kernel32/tests/process.c
@@ -3312,9 +3312,10 @@ static void test_SuspendProcessState(void)
ok(pipe_magic == pipe_write_magic, "Did not get the correct magic from the remote process\n");
- /* Validate the Imports, at this point the thread in the new process should have
- initialized the EXE module imports and call each dll DllMain notifying it on
- the new thread in the process. */
+ /* Validate the imports: at this point the thread in the new process
+ * should have initialized the EXE module imports and called each dll's
+ * DllMain(), notifying it of the new thread in the process.
+ */
ret = are_imports_resolved(pi.hProcess, exe_base, &nt_header);
ok(ret, "EXE IAT is not resolved\n");
Module: wine
Branch: master
Commit: 7e1b131a85f92721a6cc367a63266eed177fd328
URL: https://source.winehq.org/git/wine.git/?a=commit;h=7e1b131a85f92721a6cc367a…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Tue Mar 24 13:50:37 2020 +0100
kernel32/tests: Add a couple of process helper functions.
wait_and_close_child_process() simplifies waiting for the child process
and closing its handles. And because it uses wait_child_process() this
ensures that any error happening in the child process is detected.
reload_child_dump() wraps a cryptic WritePrivateProfileStringA() call
and avoids having to add a comment every time.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/kernel32/tests/process.c | 284 +++++++++++++++---------------------------
1 file changed, 99 insertions(+), 185 deletions(-)
Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=7e1b131a85f92721a6cc…