Francois Gouget : testbot/WineRun*: Trace the name of the VM the task is run on.

Alexandre Julliard julliard at winehq.org
Fri Mar 12 14:28:32 CST 2021


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

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri Mar 12 01:57:57 2021 +0100

testbot/WineRun*: Trace the name of the VM the task is run on.

The information is available by going to the job details page of that
task but this helps keep track of the operations performed on a
specific VM in the Engine log.

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

---

 testbot/bin/WineRunBuild.pl    | 2 +-
 testbot/bin/WineRunTask.pl     | 2 +-
 testbot/bin/WineRunWineTest.pl | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/testbot/bin/WineRunBuild.pl b/testbot/bin/WineRunBuild.pl
index ff13052..adb1959 100755
--- a/testbot/bin/WineRunBuild.pl
+++ b/testbot/bin/WineRunBuild.pl
@@ -168,7 +168,7 @@ my $VM = $Task->VM;
 
 
 my $Start = Time();
-LogMsg "Task $JobId/$StepNo/$TaskNo started\n";
+LogMsg "Task $JobId/$StepNo/$TaskNo started on ", $VM->Name, "\n";
 
 
 #
diff --git a/testbot/bin/WineRunTask.pl b/testbot/bin/WineRunTask.pl
index 36b3e68..d5f2610 100755
--- a/testbot/bin/WineRunTask.pl
+++ b/testbot/bin/WineRunTask.pl
@@ -197,7 +197,7 @@ my $VM = $Task->VM;
 
 
 my $Start = Time();
-LogMsg "Task $JobId/$StepNo/$TaskNo started\n";
+LogMsg "Task $JobId/$StepNo/$TaskNo started on ", $VM->Name, "\n";
 
 
 #
diff --git a/testbot/bin/WineRunWineTest.pl b/testbot/bin/WineRunWineTest.pl
index 94757bf..3a267ac 100755
--- a/testbot/bin/WineRunWineTest.pl
+++ b/testbot/bin/WineRunWineTest.pl
@@ -194,7 +194,7 @@ my $VM = $Task->VM;
 
 
 my $Start = Time();
-LogMsg "Task $JobId/$StepNo/$TaskNo started\n";
+LogMsg "Task $JobId/$StepNo/$TaskNo started on ", $VM->Name, "\n";
 
 
 #




More information about the wine-cvs mailing list