Changeset 252691 in webkit


Ignore:
Timestamp:
Nov 20, 2019 10:25:20 AM (5 years ago)
Author:
Jonathan Bedard
Message:

kill-old-processes: Log currently running processes
https://bugs.webkit.org/show_bug.cgi?id=204415

Unreviewed infrastructure management.

  • BuildSlaveSupport/kill-old-processes:

(main): Log 'ps aux' for Mac and Linux.

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r252617 r252691  
    123123    tasksToKill = os.getenv("WEBKITBOT_TASKSTOKILL", "").split()
    124124    if sys.platform == 'darwin':
     125        os.system("ps aux")
    125126        for task in tasksToKill + tasksToKillMac:
    126127            os.system("killall -9 -v -m " + task)
     
    136137            os.system("taskkill /t /f /im " + task)
    137138    elif sys.platform.startswith('linux'):
     139        os.system("ps aux")
    138140        builddir_bin = "WebKitBuild/Release/bin" if os.path.isdir("WebKitBuild/Release/bin") else "WebKitBuild/Debug/bin"
    139141        for task in tasksToKill + taskToKillUnix + listAllWebKitPrograms(builddir_bin):
  • trunk/Tools/ChangeLog

    r252679 r252691  
     12019-11-20  Jonathan Bedard  <jbedard@apple.com>
     2
     3        kill-old-processes: Log currently running processes
     4        https://bugs.webkit.org/show_bug.cgi?id=204415
     5
     6        Unreviewed infrastructure management.
     7
     8        * BuildSlaveSupport/kill-old-processes:
     9        (main): Log 'ps aux' for Mac and Linux.
     10
    1112019-11-19  Saam Barati  <sbarati@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.