Closed
Bug 1384063
Opened 7 years ago
Closed 7 years ago
Handle content crashes better in wpt
Categories
(Testing :: web-platform-tests, enhancement)
Tracking
(firefox57 fixed)
RESOLVED
FIXED
mozilla57
Tracking | Status | |
---|---|---|
firefox57 | --- | fixed |
People
(Reporter: jgraham, Assigned: jgraham)
References
Details
Attachments
(2 files)
Currently content crashes result in timeouts with no stack trace. That's not fast and not easy to debug. We need to at least produce a stack for these cases so they can be investigated easily.
Comment hidden (mozreview-request) |
Comment hidden (mozreview-request) |
Comment 3•7 years ago
|
||
mozreview-review |
Comment on attachment 8889860 [details]
Bug 1384063 - Improve crash detection in wpt with e10s enabled,
https://reviewboard.mozilla.org/r/160938/#review166294
::: testing/web-platform/tests/tools/wptrunner/wptrunner/executors/executormarionette.py:380
(Diff revision 1)
> else:
> wait_timeout = None
>
> flag = self.result_flag.wait(wait_timeout)
> - if self.result[1] is None:
> +
> + if self.result is (None, None):
I don't think this test actually works--you can't test tuples for identity like that:
```
>>> (None, None) is (None, None)
False
```
Attachment #8889860 -
Flags: review?(ted) → review+
Comment 4•7 years ago
|
||
mozreview-review |
Comment on attachment 8889861 [details]
Bug 1384063 - Update wpt metadata for wpt crash changes,
https://reviewboard.mozilla.org/r/160940/#review166328
I'm not sure I'm actually a useful reviewer for this, but I trust that you know what you're doing.
Attachment #8889861 -
Flags: review?(ted) → review+
Pushed by james@hoppipolla.co.uk:
https://hg.mozilla.org/integration/mozilla-inbound/rev/a114907759ec
Improve crash detection in wpt with e10s enabled, r=ted
Comment 6•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox57:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla57
Updated•6 years ago
|
Assignee: nobody → james
You need to log in
before you can comment on or make changes to this bug.
Description
•