15 Jan
2026
15 Jan
'26
3:24 a.m.
eric pouech (@epo) commented about dlls/kernelbase/tests/process.c:
ok( cycles2 > cycles1, "CPU cycles used by process should be increasing.\n" ); }
+static void test_CreateProcessInternalW(void) +{ + STARTUPINFOW si; + PROCESS_INFORMATION pi; + WCHAR cmd[] = L"\"c:\\windows\\system32\\tasklist \" /?"; + BOOL ret; + + ZeroMemory(&pi, sizeof(pi)); + ZeroMemory(&si, sizeof(si)); + si.cb = sizeof(si); + + ret = CreateProcessInternalW(NULL, NULL, (LPWSTR)cmd, NULL, NULL, FALSE,
I'd rather test CreateProcessW (moreover I'm not sure it's exported from all Windows version out there) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9882#note_127031