Title: [112367] trunk/Tools
Revision
112367
Author
[email protected]
Date
2012-03-27 23:43:30 -0700 (Tue, 27 Mar 2012)

Log Message

kill-old-processes doesn't do anything on linux
https://bugs.webkit.org/show_bug.cgi?id=82388

Disable kill-old-processes on the Qt bots not to kill each others.

Reviewed by Ryosuke Niwa.

* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(Factory.__init__):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (112366 => 112367)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-03-28 06:40:46 UTC (rev 112366)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-03-28 06:43:30 UTC (rev 112367)
@@ -699,7 +699,9 @@
         factory.BuildFactory.__init__(self)
         self.addStep(ConfigureBuild, platform=platform, configuration=configuration, architecture=" ".join(architectures), buildOnly=buildOnly, features=features)
         self.addStep(CheckOutSource)
-        self.addStep(KillOldProcesses)
+        # There are multiple Qt slaves running on same machines, so buildslaves shouldn't kill the processes of other slaves.
+        if platform != "qt":
+            self.addStep(KillOldProcesses)
         if platform == "win":
             self.addStep(InstallWin32Dependencies)
         if platform.startswith("chromium"):

Modified: trunk/Tools/ChangeLog (112366 => 112367)


--- trunk/Tools/ChangeLog	2012-03-28 06:40:46 UTC (rev 112366)
+++ trunk/Tools/ChangeLog	2012-03-28 06:43:30 UTC (rev 112367)
@@ -1,3 +1,15 @@
+2012-03-27  Csaba Osztrogonác  <[email protected]>
+
+        kill-old-processes doesn't do anything on linux
+        https://bugs.webkit.org/show_bug.cgi?id=82388
+
+        Disable kill-old-processes on the Qt bots not to kill each others.
+
+        Reviewed by Ryosuke Niwa.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+        (Factory.__init__):
+
 2012-03-27  Hao Zheng  <[email protected]>
 
         Handle DRT crash caused by Android OOM.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to