testbot: The calls to CreateJobs() and ScheduleJobs() need to be fully qualified.

Francois Gouget fgouget at codeweavers.com
Thu Mar 14 15:57:36 CDT 2013


---

I'm not sure why this is needed :-(
Also it only happened on my machine (with a modern perl) but now seems 
to happen on the production environment (older perl in theory).

 testbot/lib/WineTestBot/Patches.pm |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testbot/lib/WineTestBot/Patches.pm b/testbot/lib/WineTestBot/Patches.pm
index 232e767..11c355f 100644
--- a/testbot/lib/WineTestBot/Patches.pm
+++ b/testbot/lib/WineTestBot/Patches.pm
@@ -187,7 +187,7 @@ sub Submit
   my $First = 1;
   foreach my $BaseName (keys %Targets)
   {
-    my $Jobs = CreateJobs();
+    my $Jobs = WineTestBot::Jobs::CreateJobs();
 
     # Create a new job for this patch
     my $NewJob = $Jobs->Add();
@@ -283,7 +283,7 @@ sub Submit
   }
   $self->Disposition($Disposition);
 
-  ScheduleJobs();
+  WineTestBot::Jobs::ScheduleJobs();
 
   return undef;
 }
-- 
1.7.10.4



More information about the wine-patches mailing list