Francois Gouget : testbot/WineSendLog: Replace completed with a more explicit status.

Alexandre Julliard julliard at winehq.org
Fri Jul 20 11:19:17 CDT 2018


Module: tools
Branch: master
Commit: 093141f912eebdf622eedd2d74390fa06644f657
URL:    https://source.winehq.org/git/tools.git/?a=commit;h=093141f912eebdf622eedd2d74390fa06644f657

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri Jul 20 09:02:15 2018 +0200

testbot/WineSendLog: Replace completed with a more explicit status.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 testbot/bin/WineSendLog.pl | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/testbot/bin/WineSendLog.pl b/testbot/bin/WineSendLog.pl
index 8885e20..537778a 100755
--- a/testbot/bin/WineSendLog.pl
+++ b/testbot/bin/WineSendLog.pl
@@ -258,17 +258,18 @@ MIME-Version: 1.0
 Content-Transfer-Encoding: 8bit
 Content-Disposition: inline
 
-VM                   Status    Number of test failures
+VM                   Status   Number of test failures
 EOF
   foreach my $Key (@SortedKeys)
   {
     my $StepTask = $StepsTasks->GetItem($Key);
+
     my $TestFailures = $StepTask->TestFailures;
-    if (! defined($TestFailures))
-    {
-      $TestFailures = "";
-    }
-    printf $Sendmail "%-20s %-9s %s\n", $StepTask->VM->Name, $StepTask->Status,
+    $TestFailures = "" if (!defined $TestFailures);
+    my $Status = $StepTask->Status;
+    $Status = $TestFailures ? "failed" : "success" if ($Status eq "completed");
+
+    printf $Sendmail "%-20s %-8s %s\n", $StepTask->VM->Name, $Status,
                      $TestFailures;
   }
 




More information about the wine-cvs mailing list