Closed
Bug 733003
Opened 13 years ago
Closed 13 years ago
"failed to cleanup" message should be more helpful
Categories
(Testing :: Talos, defect)
Testing
Talos
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: k0scist, Unassigned)
Details
Attachments
(1 file, 1 obsolete file)
1.41 KB,
patch
|
jmaher
:
review+
|
Details | Diff | Splinter Review |
http://hg.mozilla.org/build/talos/file/6694f881a3fb/talos/ffprocess.py#l91
This isn't very helpful for diagnosis. We should output more about
the process information for diagnosis
Reporter | ||
Comment 1•13 years ago
|
||
Attachment #602937 -
Flags: review?(jmaher)
Comment 2•13 years ago
|
||
Comment on attachment 602937 [details] [diff] [review]
print out running processes
Review of attachment 602937 [details] [diff] [review]:
-----------------------------------------------------------------
::: talos/ffprocess.py
@@ +88,5 @@
> # and we need to give it a little extra time to complete
> time.sleep(browser_wait)
> + processes = self.checkAllProcesses(process_name, child_process):
> + if processes:
> + raise talosError("failed to cleanup processes: %s" % processes)
I would like to make this more robust:
msg = "Failed to cleanup, no processes found"
if processes:
msg = "Failed to cleanup processes: %s" % processes
raise talosError(msg)
Attachment #602937 -
Flags: review?(jmaher) → review+
Reporter | ||
Comment 3•13 years ago
|
||
If no processes are found, then cleanup is successful, and we don't raise a talosError
Reporter | ||
Updated•13 years ago
|
Whiteboard: [talos-checkin-needed]
Reporter | ||
Comment 4•13 years ago
|
||
beh, forgot to remove a ':'
Reporter | ||
Comment 5•13 years ago
|
||
Attachment #602937 -
Attachment is obsolete: true
Attachment #603015 -
Flags: review?(jmaher)
Updated•13 years ago
|
Attachment #603015 -
Flags: review?(jmaher) → review+
Reporter | ||
Comment 6•13 years ago
|
||
tested locally on android ts + tsvg
Reporter | ||
Comment 7•13 years ago
|
||
Comment 8•13 years ago
|
||
Try run for 6dbeb77e5f31 is complete.
Detailed breakdown of the results available here:
https://tbpl.mozilla.org/?tree=Try&rev=6dbeb77e5f31
Results (out of 39 total builds):
exception: 19
success: 5
failure: 15
Builds (or logs if builds failed) available at:
http://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/jhammel@mozilla.com-6dbeb77e5f31
Reporter | ||
Comment 9•13 years ago
|
||
try looks pretty green, pushing: http://hg.mozilla.org/build/talos/rev/6694f881a3fb
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Comment 10•13 years ago
|
||
Try run for b997c2d57863 is complete.
Detailed breakdown of the results available here:
https://tbpl.mozilla.org/?tree=Try&rev=b997c2d57863
Results (out of 73 total builds):
success: 70
failure: 3
Builds (or logs if builds failed) available at:
http://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/jhammel@mozilla.com-b997c2d57863
Timed out after 06 hours without completing.
Updated•13 years ago
|
Whiteboard: [talos-checkin-needed]
You need to log in
before you can comment on or make changes to this bug.
Description
•