Module: tools Branch: master Commit: 872a26b5fe4e82b2e03541c4f1d6222012723dc4 URL: http://source.winehq.org/git/tools.git/?a=commit;h=872a26b5fe4e82b2e03541c4f...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Mar 17 10:22:07 2014 +0100
testbot: Clarify the timeout error message in the email reports.
---
testbot/bin/WineSendLog.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testbot/bin/WineSendLog.pl b/testbot/bin/WineSendLog.pl index aec2bee..b375447 100755 --- a/testbot/bin/WineSendLog.pl +++ b/testbot/bin/WineSendLog.pl @@ -116,7 +116,7 @@ sub ReadLog if ($Line =~ m/${BaseName}:${TestSet} done ((\d+))/ && $1 eq "258") { - $Messages[@Messages] = "Timeout"; + $Messages[@Messages] = "The test timed out"; } $Found = 1; } @@ -256,7 +256,7 @@ EOF } if ($Line =~ m/^[^:]+:([^ ]+) done (258)/) { - print SENDMAIL "$1: Timeout\n"; + print SENDMAIL "$1: The test timed out\n"; } else {