Module: tools Branch: master Commit: 471a416ba8568df41173a8af221aebcb04da39c6 URL: https://gitlab.winehq.org/winehq/tools/-/commit/471a416ba8568df41173a8af221a...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Nov 17 18:05:51 2022 +0100
testbot/LogUtils: Include the full test unit name in task timeout errors.
---
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 06751e78..da35d8d3 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -491,7 +491,7 @@ sub _CloseTestUnit($$$) } elsif ($Last and $LogInfo->{TaskTimedOut}) { - _AddExtra($LogInfo, "$Cur->{Unit}: Timeout"); + _AddExtra($LogInfo, "timeout", $Cur); } } }