From: tony@chromium.org Date: Thu, 3 Mar 2011 17:34:47 +0000 (+0000) Subject: 2011-03-03 Tony Chang X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=988b80c84f45a215184bc19b8317a7bdbc33f939 2011-03-03 Tony Chang Reviewed by Dimitri Glazkov. [chromium] Run kill-old-processes on the chromium-win bot too https://bugs.webkit.org/show_bug.cgi?id=55630 * BuildSlaveSupport/build.webkit.org-config/master.cfg: * BuildSlaveSupport/win/kill-old-processes: Add wdiff.exe to the kill list. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@80248 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg b/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg index fafd802d5b19..79130958bfea 100644 --- a/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg +++ b/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg @@ -420,8 +420,9 @@ class Factory(factory.BuildFactory): factory.BuildFactory.__init__(self) self.addStep(ConfigureBuild, platform=platform, configuration=configuration, architecture=" ".join(architectures), buildOnly=buildOnly) self.addStep(CheckOutSource) - if platform == "win": + if platform in ("win", "chromium-win"): self.addStep(KillOldProcesses) + if platform == "win": self.addStep(InstallWin32Dependencies) if platform.startswith("chromium"): self.addStep(InstallChromiumDependencies) diff --git a/Tools/BuildSlaveSupport/win/kill-old-processes b/Tools/BuildSlaveSupport/win/kill-old-processes index 6760e08e39af..885d6fa081a7 100755 --- a/Tools/BuildSlaveSupport/win/kill-old-processes +++ b/Tools/BuildSlaveSupport/win/kill-old-processes @@ -29,7 +29,8 @@ def main(): tasksToKill = ["DumpRenderTree.exe", "DumpRenderTree_debug.exe", "testapi.exe", "testapi_debug.exe", "svn.exe", "httpd.exe", "cl.exe", "link.exe", "midl.exe", "devenv.exe", "perl.exe", "imagediff.exe", "imagediff_debug.exe", "jsc.exe", "jsc_debug.exe", "WebKit2WebProcess.exe", - "WebKit2WebProcess_debug.exe", "WebKitTestRunner.exe", "WebKitTestRunner_debug.exe"] + "WebKit2WebProcess_debug.exe", "WebKitTestRunner.exe", "WebKitTestRunner_debug.exe", + "wdiff.exe"] for task in tasksToKill: os.system("taskkill /f /im " + task) diff --git a/Tools/ChangeLog b/Tools/ChangeLog index 1960f6972b40..a8053126ea5a 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,13 @@ +2011-03-03 Tony Chang + + Reviewed by Dimitri Glazkov. + + [chromium] Run kill-old-processes on the chromium-win bot too + https://bugs.webkit.org/show_bug.cgi?id=55630 + + * BuildSlaveSupport/build.webkit.org-config/master.cfg: + * BuildSlaveSupport/win/kill-old-processes: Add wdiff.exe to the kill list. + 2011-03-03 Carlos Garcia Campos Reviewed by Martin Robinson.