From: Francois Gouget Subject: [Tools 3/3] testbot/TestLauncher: Report the exit code as a signed integer. Message-Id: Date: Wed, 21 Jun 2017 16:27:36 +0200 (CEST) This is for consistency with WineTest. Signed-off-by: Francois Gouget --- testbot/src/TestLauncher/TestLauncher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbot/src/TestLauncher/TestLauncher.c b/testbot/src/TestLauncher/TestLauncher.c index fb48484c..30521982 100644 --- a/testbot/src/TestLauncher/TestLauncher.c +++ b/testbot/src/TestLauncher/TestLauncher.c @@ -451,7 +451,7 @@ int main(int argc, char *argv[]) } CloseHandle(ProcessInformation.hProcess); - printf("%s:%s:%04lx done (%lu) in %lds\n", TestName, Subtest, + printf("%s:%s:%04lx done (%ld) in %lds\n", TestName, Subtest, ProcessInformation.dwProcessId, ExitCode, (GetTickCount() - Start) / 1000); -- 2.11.0