Module: tools Branch: master Commit: 0a6fa83afe698b98d5f6847030c2d9558ac618ec URL: https://source.winehq.org/git/tools.git/?a=commit;h=0a6fa83afe698b98d5f68470...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Nov 16 11:14:15 2018 +0100
testbot: Shorten the test report names.
The context makes it clear enough whether the report was produced on Windows or in Wine. So use a shorter, more readable name.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/WineTestBot/LogUtils.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm index 59b2d0a..f142982 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -596,11 +596,11 @@ sub GetLogFileNames($;$) }
my %_LogFileLabels = ( - "exe32.report" => "32 bit Windows report", - "exe64.report" => "64 bit Windows report", - "win32.report" => "32 bit Wine report", - "wow32.report" => "32 bit WoW Wine report", - "wow64.report" => "64 bit Wow Wine report", + "exe32.report" => "32 bit report", + "exe64.report" => "64 bit report", + "win32.report" => "32 bit report", + "wow32.report" => "32 bit WoW report", + "wow64.report" => "64 bit WoW report", "log" => "task log", "old_log" => "old logs", );