Closed
Bug 1295867
Opened 9 years ago
Closed 8 years ago
Intermittent toolkit/components/extensions/test/xpcshell/test_ext_native_messaging.js | test_stderr - [test_stderr : 467] Saw second line of stderr output on the console - -1 != -1
Categories
(WebExtensions :: Untriaged, defect, P3)
WebExtensions
Untriaged
Tracking
(firefox50 unaffected, firefox51 fixed, firefox52 fixed)
RESOLVED
FIXED
mozilla52
Tracking | Status | |
---|---|---|
firefox50 | --- | unaffected |
firefox51 | --- | fixed |
firefox52 | --- | fixed |
People
(Reporter: intermittent-bug-filer, Assigned: kmag)
References
Details
(Keywords: intermittent-failure)
Attachments
(1 file)
Filed by: philringnalda [at] gmail.com
https://treeherder.mozilla.org/logviewer.html#?job_id=33969723&repo=mozilla-inbound
https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-inbound-win64-debug/1471381035/mozilla-inbound_win8_64-debug_test-xpcshell-bm110-tests1-windows-build3045.txt.gz
Comment hidden (mozreview-request) |
Comment 2•9 years ago
|
||
mozreview-review |
Comment on attachment 8783231 [details]
Bug 1295867: Wait for all IO operations to complete before ending test tasks.
https://reviewboard.mozilla.org/r/73136/#review70916
::: toolkit/modules/subprocess/subprocess_worker_common.js:150
(Diff revision 1)
>
> - return process.exitPromise.then(exitCode => {
> + process.awaitFinished().then(() => {
> io.cleanupProcess(process);
> + });
> +
> + return process.exitPromise.then(exitCode => {
I don't think it matters functionally but stylistically it looks strange to have this handler nested inside another handler instead of just returning exitPromise here and then chaining another top level handler.
Attachment #8783231 -
Flags: review?(aswan) → review+
Assignee | ||
Comment 3•9 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/64fc57e6ee841f55e2d2f196b51aff11b71a428e
Bug 1295867: Wait for all IO operations to complete before ending test tasks. r=aswan
![]() |
||
Comment 5•9 years ago
|
||
Backed out for windows xpcshell failure test_native_messaging.js | test_native_app_shutdown:
https://hg.mozilla.org/integration/mozilla-inbound/rev/0cd2a7ca95912162755bb744f6aac644a7dc3a27
Push with failures: https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=64fc57e6ee841f55e2d2f196b51aff11b71a428e
Failure log: https://treeherder.mozilla.org/logviewer.html#?job_id=34360757&repo=mozilla-inbound
14:53:50 INFO - TEST-PASS | toolkit/components/extensions/test/xpcshell/test_native_messaging.js | test_native_app_shutdown - [test_native_app_shutdown : 265] Received test message - "test" == "test"
14:53:50 INFO - "waiting for async shutdown"
14:53:50 WARNING - TEST-UNEXPECTED-FAIL | toolkit/components/extensions/test/xpcshell/test_native_messaging.js | test_native_app_shutdown - [test_native_app_shutdown : 283] native process exited - 1 == 0
14:53:50 INFO - c:/slave/test/build/tests/xpcshell/tests/toolkit/components/extensions/test/xpcshell/test_native_messaging.js:test_native_app_shutdown:283
14:53:50 INFO - _run_next_test@c:\slave\test\build\tests\xpcshell\head.js:1564:9
14:53:50 INFO - do_execute_soon/<.run@c:\slave\test\build\tests\xpcshell\head.js:712:9
14:53:50 INFO - _do_main@c:\slave\test\build\tests\xpcshell\head.js:209:5
14:53:50 INFO - _execute_test@c:\slave\test\build\tests\xpcshell\head.js:544:5
14:53:50 INFO - @-e:1:1
14:53:50 INFO - exiting test
14:53:50 INFO - Unexpected exception 2147500036
Flags: needinfo?(kmaglione+bmo)
Assignee | ||
Comment 6•9 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/a8e42ea0dc67fd18a77ee9002d3f02f2d0dd5e2b
Bug 1295867: Wait for all IO operations to complete before ending test tasks. r=aswan
Comment hidden (Intermittent Failures Robot) |
Comment 8•9 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 9 years ago
status-firefox51:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla51
Assignee | ||
Updated•9 years ago
|
Flags: needinfo?(kmaglione+bmo)
Comment hidden (Intermittent Failures Robot) |
Comment 10•9 years ago
|
||
Still happening.
Assignee: nobody → kmaglione+bmo
Status: RESOLVED → REOPENED
Flags: needinfo?(kmaglione+bmo)
Resolution: FIXED → ---
Target Milestone: mozilla51 → ---
Assignee | ||
Comment 11•9 years ago
|
||
Well, it's not failing as often, at least. There's still a slight race. I think we just need to reorder some operations to fix it completely.
Flags: needinfo?(kmaglione+bmo)
Comment 12•9 years ago
|
||
Bulk assigning P3 to all open intermittent bugs without a priority set in Firefox components per bug 1298978.
Priority: -- → P3
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 17•8 years ago
|
||
25 failures in the last week, all Win8 debug :(
Assignee | ||
Comment 18•8 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/916c47f534c20427eecbb988453fe2e32004d4c4
Bug 1295867: Fix race in handling buffered stderr output from native app. r=me
Comment 19•8 years ago
|
||
bugherder |
Status: REOPENED → RESOLVED
Closed: 9 years ago → 8 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla52
Assignee | ||
Updated•8 years ago
|
Flags: needinfo?(kmaglione+bmo)
Comment 20•8 years ago
|
||
bugherder uplift |
Flags: in-testsuite+
Comment hidden (Intermittent Failures Robot) |
Updated•7 years ago
|
Product: Toolkit → WebExtensions
You need to log in
before you can comment on or make changes to this bug.
Description
•