Francois Gouget : testbot: The Job priority is really a niceness field.

Alexandre Julliard julliard at winehq.org
Mon Dec 10 12:54:06 CST 2018


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

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Mon Dec 10 16:48:20 2018 +0100

testbot: The Job priority is really a niceness field.

Change the display name so it is shown as a niceness to make it clearer
that higher values indicate a lower priority.

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

---

 testbot/web/index.pl | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/testbot/web/index.pl b/testbot/web/index.pl
index b20c7bf..39fea3e 100644
--- a/testbot/web/index.pl
+++ b/testbot/web/index.pl
@@ -73,7 +73,11 @@ sub GenerateHeaderCell($$$)
   my ($self, $PropertyDescriptor) = @_;
 
   my $PropertyName = $PropertyDescriptor->GetName();
-  if ($PropertyName eq "Ended")
+  if ($PropertyName eq "Priority")
+  {
+    print "<th><a class='title' title='Higher values indicate a lower priority'>Nice</a></th>\n";
+  }
+  elsif ($PropertyName eq "Ended")
   {
     print "<th><a class='title' title='Ended'>Time</a></th>\n";
   }




More information about the wine-cvs mailing list