Module: tools Branch: master Commit: 495bb722925c87050545929b5400cda35b587cd1 URL: https://gitlab.winehq.org/winehq/tools/-/commit/495bb722925c87050545929b5400...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Oct 17 13:18:32 2022 +0200
testbot/TestLauncher: Add flaky to the stub test results line.
---
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 41fb9042..4976449a 100644 --- a/testbot/src/TestLauncher/TestLauncher.c +++ b/testbot/src/TestLauncher/TestLauncher.c @@ -436,7 +436,7 @@ int main(int argc, char *argv[])
ExitCode = RunTest(TestExeFileName, CommandLine, TimeOut, &Pid); if (Failures || Skips) - printf("%04lx:%s: %u tests executed (0 marked as todo, %u failures), %u skipped.\n", Pid, Subtest, Failures, Failures, Skips); + printf("%04lx:%s: %u tests executed (0 marked as todo, 0 as flaky, %u failures), %u skipped.\n", Pid, Subtest, Failures, Failures, Skips);
printf("%s:%s:%04lx done (%ld) in %lds\n", TestName, Subtest, Pid, ExitCode, (GetTickCount() - Start) / 1000);