Commit a8de3504 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mscoree/tests: Trace the GetExitCodeProcess() error before it gets lost.

parent 3eb06cf4
......@@ -157,9 +157,8 @@ static BOOL runtime_is_usable(void)
WaitForSingleObject(pi.hProcess, INFINITE);
ret = GetExitCodeProcess(pi.hProcess, &exitcode);
CloseHandle(pi.hProcess);
ok(ret, "GetExitCodeProcess failed: %lu\n", GetLastError());
CloseHandle(pi.hProcess);
if (!ret || exitcode != 0)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment