Module: tools Branch: master Commit: e25d90af5899490e85b578ed9facd8954123bee0 URL: https://source.winehq.org/git/tools.git/?a=commit;h=e25d90af5899490e85b578ed...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Feb 13 12:12:13 2020 +0100
testbot: Show the right filename in LoadLogErrors()'s BadLog message.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 2104ffa..e56388a 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -874,7 +874,7 @@ sub LoadLogErrors($) my $ErrorsFile; if (!open($ErrorsFile, "<", $LogPath)) { - $LogInfo->{BadLog} = "Unable to open '$LogName' for reading: $!"; + $LogInfo->{BadLog} = "Unable to open '$LogName.errors' for reading: $!"; return $LogInfo; }