initial import
[vuplus_webkit] / Tools / BuildSlaveSupport / win / kill-old-processes
1 #!/usr/bin/python\r
2 \r
3 # Copyright (C) 2010 Apple Inc.  All rights reserved.\r
4 #\r
5 # Redistribution and use in source and binary forms, with or without\r
6 # modification, are permitted provided that the following conditions\r
7 # are met:\r
8 #\r
9 # 1.  Redistributions of source code must retain the above copyright\r
10 #     notice, this list of conditions and the following disclaimer. \r
11 # 2.  Redistributions in binary form must reproduce the above copyright\r
12 #     notice, this list of conditions and the following disclaimer in the\r
13 #     documentation and/or other materials provided with the distribution. \r
14 #\r
15 # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY\r
16 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
17 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
18 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY\r
19 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
20 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
21 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r
22 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
23 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r
24 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
25 \r
26 import os, sys\r
27 \r
28 def main():\r
29     tasksToKill = [ "cl.exe", \r
30                                         "devenv.com", \r
31                                         "devenv.exe", \r
32                                         "DumpRenderTree.exe", \r
33                                         "DumpRenderTree_debug.exe",\r
34                                         "httpd.exe", \r
35                                         "imagediff.exe", \r
36                                         "imagediff_debug.exe", \r
37                                         "jsc.exe", \r
38                                         "jsc_debug.exe",\r
39                                         "LightTPD.exe", \r
40                                         "link.exe", \r
41                                         "midl.exe", \r
42                                         "perl.exe", \r
43                                         "Safari.exe", \r
44                                         "svn.exe", \r
45                                         "testapi.exe", \r
46                                         "testapi_debug.exe", \r
47                                         "VcBuildHelper.exe", \r
48                                         "wdiff.exe", \r
49                                         "WebKit2WebProcess.exe", \r
50                                         "WebKit2WebProcess_debug.exe", \r
51                                         "WebKitTestRunner.exe", \r
52                                         "WebKitTestRunner_debug.exe"]\r
53                                         \r
54     for task in tasksToKill:\r
55         os.system("taskkill /t /f /im " + task)\r
56 \r
57 if __name__ == '__main__':\r
58     sys.exit(main())\r