Module: tools Branch: master Commit: aaee0f1b914d4ba99ccaa819a1597b1c3a0a2e3d URL: https://gitlab.winehq.org/winehq/tools/-/commit/aaee0f1b914d4ba99ccaa819a159...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Oct 19 17:23:24 2022 +0200
testbot/LogUtils: Old test reports may not have the flaky count.
---
testbot/lib/WineTestBot/LogUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm index 922a25c0..a9c893a3 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -713,7 +713,7 @@ sub ParseWineTestReport($$$) # There may be more than one summary line due to child processes $Cur->{Pids}->{$Pid || 0} = 1; $Cur->{SummaryFailures} += $Failures; - $Cur->{SummaryFlaky} += $Flaky; + $Cur->{SummaryFlaky} += ($Flaky || 0); $Cur->{SummaryTodos} += $Todos; $Cur->{SummarySkips} += $Skips; $LogInfo->{IsWineTest} = 1;