Closed
Bug 586042
Opened 15 years ago
Closed 15 years ago
Kill xpcshell tests
Categories
(Release Engineering :: General, defect)
Release Engineering
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: catlee, Assigned: catlee)
Details
(Whiteboard: [buildduty])
sdwilsh requested that I kill off xpcshell tests on all platforms for the following revisions on mozilla-central:
de1fc57f30b5
e5a5061b99d1
b840177c952a
f9119d9982ee
634d179da621
f1e252898bca
203ed2bd78ce
35132a94de65
52abf5cb2569
97dcac024d4f
6820ff3f2027
323d65ae8bce
e0c443c09d67
I hacked up cancellator.py to do this:
for brid, buildername in getPendingBuilds(db, options.branch, options.revision):
if "xpcshell" not in buildername:
continue
found = True
if options.force:
print "Cancelling pending build on", buildername,
try:
cancelPendingBuild(brid)
print "OK"
killed = True
except:
print "FAILED"
else:
print "Would cancel pending build on", buildername
for r in getRunningBuilds(db, options.branch, options.revision):
if "xpcshell" not in r[1]:
continue
found = True
url = urlFromResult(r)
if options.force:
print "Cancelling running build", url,
try:
cancelBuild(url)
print "OK"
killed = True
except:
print "FAILED"
else:
print "Would cancel running build at", url
| Assignee | ||
Updated•15 years ago
|
Status: NEW → RESOLVED
Closed: 15 years ago
OS: Linux → All
Hardware: x86_64 → All
Resolution: --- → FIXED
Comment 1•15 years ago
|
||
Thanks! Next time I'll file a bug myself even!
Comment 2•15 years ago
|
||
See also bug 581775. We're accumulating hung win7 machines when they hang in ipc tests, and then buildbot doesn't kill the process tree properly, the job doesn't terminate and the slave ends up doing nothing.
Updated•12 years ago
|
Product: mozilla.org → Release Engineering
You need to log in
before you can comment on or make changes to this bug.
Description
•