Module: wine Branch: master Commit: eec3ad5e7c9d9dcc13043ce50719b994ea0fde93 URL: https://source.winehq.org/git/wine.git/?a=commit;h=eec3ad5e7c9d9dcc13043ce50...
Author: Francois Gouget fgouget@free.fr Date: Wed Feb 19 15:53:14 2020 +0100
kernel32/tests: Clarify the process's quotes handling comment.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/kernel32/tests/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/kernel32/tests/process.c b/dlls/kernel32/tests/process.c index 8dceffb59f..323f8092d7 100644 --- a/dlls/kernel32/tests/process.c +++ b/dlls/kernel32/tests/process.c @@ -919,7 +919,7 @@ static void test_CommandLine(void) startup.dwFlags = STARTF_USESHOWWINDOW; startup.wShowWindow = SW_SHOWNORMAL;
- /* from François */ + /* test main()'s quotes handling */ get_file_name(resfile); sprintf(buffer, ""%s" tests/process.c dump "%s" "a\"b\\" c\" d", selfname, resfile); ok(CreateProcessA(NULL, buffer, NULL, NULL, FALSE, 0L, NULL, NULL, &startup, &info), "CreateProcess\n");