Changeset 112373 in webkit


Ignore:
Timestamp:
Mar 28, 2012 1:26:37 AM (12 years ago)
Author:
rniwa@webkit.org
Message:

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

Reviewed by Tony Chang.

Kill cc1plus, ld, etc... on linux. Also ps aux + grep to kill old run-webkit-tests processes.
This should help stabilizing Chromium linux bots.

  • BuildSlaveSupport/kill-old-processes:
Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r111866 r112373  
    6161        "clang++",
    6262        "gcc-4.2",
    63         "i686-apple-darwin10-gcc-4.2.1"
     63        "i686-apple-darwin10-gcc-4.2.1",
    6464        "jsc",
    6565        "make",
     
    8282    ]
    8383
     84    taskToKillUnix = [
     85        "cc1plus",
     86        "DumpRenderTree",
     87        "gold",
     88        "ld",
     89        "make",
     90        "ruby",
     91        "svn",
     92        "webkit_unit_tests",
     93        "WebKitTestRunner",
     94    ]
     95
    8496    if sys.platform == 'darwin':
    8597        for task in tasksToKillMac:
     
    90102        for task in tasksToKillWin:
    91103            os.system("taskkill /t /f /im " + task)
     104    elif sys.platform.startswith('linux'):
     105        for task in taskToKillUnix:
     106            os.system("killall -9 -v " + task)
     107        os.system("ps aux | grep -P '.+/python .+(run_webkit_tests|run-webkit-tests)' | grep -v grep | awk '{print $2}' | xargs kill")
    92108    else:
    93109        sys.exit()
  • trunk/Tools/ChangeLog

    r112372 r112373  
     12012-03-28  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        kill-old-processes doesn't do anything on linux
     4        https://bugs.webkit.org/show_bug.cgi?id=82388
     5
     6        Reviewed by Tony Chang.
     7
     8        Kill cc1plus, ld, etc... on linux. Also ps aux + grep to kill old run-webkit-tests processes.
     9        This should help stabilizing Chromium linux bots.
     10
     11        * BuildSlaveSupport/kill-old-processes:
     12
    1132012-03-28  Philippe Normand  <pnormand@igalia.com>
    214
Note: See TracChangeset for help on using the changeset viewer.