winetest: Report GetLastError() when CreateProcess() fails.

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-07-05 19:07:19 +02:00 committed by Alexandre Julliard
parent e2b9131bd9
commit 37ea62f674
1 changed files with 1 additions and 0 deletions

View File

@ -811,6 +811,7 @@ run_test (struct wine_test* test, const char* subtest, HANDLE out_file, const ch
report (R_STEP, "Running: %s:%s", test->name, subtest);
xprintf ("%s:%s start %s\n", test->name, subtest, file);
status = run_ex (cmd, out_file, tempdir, 120000, FALSE, &pid);
if (status == -2) status = -GetLastError();
heap_free (cmd);
xprintf ("%s:%s:%04x done (%d) in %ds\n", test->name, subtest, pid, status, (GetTickCount()-start)/1000);
if (status) failures++;