Francois Gouget : testbot/TestLauncher: Report the exit code as a signed integer.

Alexandre Julliard julliard at winehq.org
Mon Jun 26 11:45:35 CDT 2017


Module: tools
Branch: master
Commit: 441990cc867ce10d44da52944aa2c5efeca980b1
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=441990cc867ce10d44da52944aa2c5efeca980b1

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Wed Jun 21 16:27:36 2017 +0200

testbot/TestLauncher: Report the exit code as a signed integer.

This is for consistency with WineTest.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 fb48484..3052198 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);
 




More information about the wine-cvs mailing list