Alexandre Julliard : testbot: Fix copy/paste typo in previous change.
Module: tools Branch: master Commit: 06289537d5b7cbcd974c079cc9b3cf03a1fdba64 URL: https://gitlab.winehq.org/winehq/tools/-/commit/06289537d5b7cbcd974c079cc9b3... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Sep 7 21:56:35 2022 +0200 testbot: Fix copy/paste typo in previous change. --- 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 8729e9f7..98fed6aa 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -703,7 +703,7 @@ sub ParseWineTestReport($$$) $Cur->{LineFailures}++; } } - elsif ($line =~ /([0-9a-f]{4}):([_a-z0-9]+):[0-9.]* \d+ tests? executed \((\d+) marked as todo, (?:(\d+) as flaky, )?(\d+) failures?\), (\d+) skipped\./) + elsif ($Line =~ /([0-9a-f]{4}):([_a-z0-9]+):[0-9.]* \d+ tests? executed \((\d+) marked as todo, (?:(\d+) as flaky, )?(\d+) failures?\), (\d+) skipped\./) { my ($Pid, $Unit, $Todos, $Flaky, $Failures, $Skips) = ($1, $2, $3, $4, $5, $6);
participants (1)
-
Alexandre Julliard