Changeset 91421 in webkit


Ignore:
Timestamp:
Jul 20, 2011 4:28:25 PM (13 years ago)
Author:
eric@webkit.org
Message:

Make kill-old-processes kill httpd on mac
https://bugs.webkit.org/show_bug.cgi?id=64898

Reviewed by Adam Barth.

  • BuildSlaveSupport/kill-old-processes:
    • The line endings seem to have flipped again, Thus making this diff gigantic. The only line changed is the "httpd" line. I suspect we'll need to set the line ending style from an svn checkout.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/kill-old-processes

    r90412 r91421  
    3030    tasksToKillWin = [
    3131        "cl.exe",
    32                 "devenv.com",
    33                 "devenv.exe",
    34                 "DumpRenderTree.exe",
    35                 "DumpRenderTree_debug.exe",
    36                 "httpd.exe",
    37                 "imagediff.exe",
    38                 "imagediff_debug.exe",
    39                 "jsc.exe",
    40                 "jsc_debug.exe",
    41                 "LightTPD.exe",
    42                 "link.exe",
    43                 "midl.exe",
    44                 "perl.exe",
    45                 "Safari.exe",
    46                 "svn.exe",
    47                 "testapi.exe",
    48                 "testapi_debug.exe",
    49                 "VcBuildHelper.exe",
    50                 "wdiff.exe",
    51                 "WebKit2WebProcess.exe",
    52                 "WebKit2WebProcess_debug.exe",
    53                 "WebKitTestRunner.exe",
    54                 "WebKitTestRunner_debug.exe",
    55         ]
     32        "devenv.com",
     33        "devenv.exe",
     34        "DumpRenderTree.exe",
     35        "DumpRenderTree_debug.exe",
     36        "httpd.exe",
     37        "imagediff.exe",
     38        "imagediff_debug.exe",
     39        "jsc.exe",
     40        "jsc_debug.exe",
     41        "LightTPD.exe",
     42        "link.exe",
     43        "midl.exe",
     44        "perl.exe",
     45        "Safari.exe",
     46        "svn.exe",
     47        "testapi.exe",
     48        "testapi_debug.exe",
     49        "VcBuildHelper.exe",
     50        "wdiff.exe",
     51        "WebKit2WebProcess.exe",
     52        "WebKit2WebProcess_debug.exe",
     53        "WebKitTestRunner.exe",
     54        "WebKitTestRunner_debug.exe",
     55    ]
    5656
    5757    tasksToKillMac = [
    58                 "jsc",
    59                 "make",
    60                 "per5.12",
    61                 "perl",
    62                 "Problem Reporter",
    63                 "ruby",
    64                 "Safari Web Content",
    65                 "Safari",
    66                 "svn",
    67                 "DumpRenderTree",
    68                 "TestWebKitAPI Web Content",
    69                 "TestWebKitAPI",
    70                 "WebKitPluginAgen", # Why no 't'?
    71                 "WebKitTestRunner Web Content",
    72                 "WebKitTestRunner",
    73                 "WebProcess",
    74         ]
     58        "httpd", # This shouldn't be needed, except currently there are bugs in NRWT's http locking code.
     59        "jsc",
     60        "make",
     61        "per5.12",
     62        "perl",
     63        "Problem Reporter",
     64        "ruby",
     65        "Safari Web Content",
     66        "Safari",
     67        "svn",
     68        "DumpRenderTree",
     69        "TestWebKitAPI Web Content",
     70        "TestWebKitAPI",
     71        "WebKitPluginAgen", # FIXME: Why no 't'?
     72        "WebKitTestRunner Web Content",
     73        "WebKitTestRunner",
     74        "WebProcess",
     75    ]
    7576
    7677    if sys.platform == 'darwin':
  • trunk/Tools/ChangeLog

    r91415 r91421  
     12011-07-20  Eric Seidel  <eric@webkit.org>
     2
     3        Make kill-old-processes kill httpd on mac
     4        https://bugs.webkit.org/show_bug.cgi?id=64898
     5
     6        Reviewed by Adam Barth.
     7
     8        * BuildSlaveSupport/kill-old-processes:
     9         - The line endings seem to have flipped again,
     10           Thus making this diff gigantic.  The only line
     11           changed is the "httpd" line.  I suspect we'll need
     12           to set the line ending style from an svn checkout.
     13
    1142011-07-20  Ojan Vafai  <ojan@chromium.org>
    215
Note: See TracChangeset for help on using the changeset viewer.