Intermittent toolkit/content/tests/chrome/test_bug331215.xhtml,test_bug331215.xul | Findfield status attribute should not have been 'notfound' after entering latest
Categories
(Toolkit :: Find Toolbar, defect)
Tracking
()
People
(Reporter: intermittent-bug-filer, Unassigned)
Details
(Keywords: intermittent-failure, leave-open, Whiteboard: [stockwell disabled])
Filed by: philringnalda [at] gmail.com https://treeherder.mozilla.org/logviewer.html#?job_id=76935414&repo=mozilla-aurora https://queue.taskcluster.net/v1/task/Ormh0ZHiQdeVEuGMYMz8Pg/runs/0/artifacts/public/logs/live_backing.log
Updated•7 years ago
|
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 17•6 years ago
|
||
On Beta, this is happening pretty frequently on Linux. Any ideas what might be going on here, Mike?
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Updated•6 years ago
|
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 23•6 years ago
|
||
Skipped on Linux for frequent failures on Beta. https://hg.mozilla.org/releases/mozilla-beta/rev/62642f364822
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 28•6 years ago
|
||
Not actively working on this atm.
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 31•6 years ago
|
||
In the last 7 days there have been 47 failures. Most of the failures occur on the windows7-32-stylo-disabled platform. There are also some that occur on Windows 7 and very low number on oher platforms like: OS X 10.10, linux32-stylo-disabled, windows10-64. The failures occur only on the debug build type. Here is an example of a recent log: https://treeherder.mozilla.org/logviewer.html#?repo=mozilla-central&job_id=141199110&lineNumber=15843 And a relevant snippet of the log: 00:41:29 INFO - 967 INFO Starting test with browser 'content-remote' 15841 00:41:29 INFO - 968 INFO TEST-PASS | toolkit/content/tests/chrome/test_bug331215.xul | Findfield status attribute should have been 'notfound' after entering test 15842 00:41:29 INFO - Buffered messages finished 15843 00:41:29 ERROR - 969 INFO TEST-UNEXPECTED-FAIL | toolkit/content/tests/chrome/test_bug331215.xul | Findfield status attribute should not have been 'notfound' after entering latest 15844 00:41:29 INFO - onDocumentLoaded@chrome://mochitests/content/chrome/toolkit/content/tests/chrome/bug331215_window.xul:66:7 15845 00:41:29 INFO - async*startTestWithBrowser@chrome://mochitests/content/chrome/toolkit/content/tests/chrome/bug331215_window.xul:53:13 15846 00:41:29 INFO - async*startTest/<@chrome://mochitests/content/chrome/toolkit/content/tests/chrome/bug331215_window.xul:38:17 15847 00:41:29 INFO - async*startTest@chrome://mochitests/content/chrome/toolkit/content/tests/chrome/bug331215_window.xul:35:14 Starting with October 30th, we can see a significant increase in failures. :mikedeboer, could you please take a look?
Comment hidden (Intermittent Failures Robot) |
Comment 33•6 years ago
|
||
(In reply to Tiberius Oros[:tiberius_oros] from comment #31) > The failures occur only on the debug build type. In other words: if I can find a suitable solution for this intermittent, a valid course of action would be to disable this test on debug builds?
Comment 34•6 years ago
|
||
Yes. If you or anyone else can't find a solution for this intermittent, then we will disable it on debug.
Comment 35•6 years ago
|
||
https://hg.mozilla.org/releases/mozilla-beta/rev/d680b7b865b8e5f1b9fb8cd9539210678db7d541
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 39•6 years ago
|
||
Pushed by jmaher@mozilla.com: https://hg.mozilla.org/integration/mozilla-inbound/rev/b8fde5e05003 Disable toolkit/content/tests/chrome/test_bug331215.xul on windows debug for frequent failures. r=me, a=testonly
Comment 40•6 years ago
|
||
keep in mind this is disabled and will need to be re-enabled when working on a fix.
Comment 41•6 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/b8fde5e05003
Comment hidden (Intermittent Failures Robot) |
Comment 43•6 years ago
|
||
https://hg.mozilla.org/releases/mozilla-beta/rev/653027753416
Comment hidden (Intermittent Failures Robot) |
I debugged this using our new debugger. Basically the problem is that the content process starts up and loads about:blank, that load event fires, gets forwarded as a notification to the chrome process via BrowserTestUtils, and causes the BrowserTestUtils.browserLoaded promise to be resolved (which is premature since data:text/html,latest hasn't loaded yet --- this is the root cause of the bug). After that onDocumentLoaded starts running. It triggers searches for "te", "tes" and "test", all of which return FIND_NOTFOUND results. (The test assumes all three will return FIND_FOUND and the first two ignored by promiseEnterStringIntoFindField's listener callback.) The first one causes promiseEnterStringIntoFindField("test") to resolve, the next one causes promiseEnterStringIntoFindField("l") to resolve (and the assertion that the status is "notfound" is true), and the third one causes promiseEnterStringIntoFindField("a") to resolve, causing a failure because in that case we're expecting a "found" result.
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Updated•5 years ago
|
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 105•4 years ago
|
||
Done some retriggers on this range:
https://treeherder.mozilla.org/#/jobs?repo=autoland&searchStr=os%2Cx%2C10.14%2Cdebug%2Cmochitests%2Cwithout%2Ce10s%2Ctest-macosx1014-64%2Fdebug-mochitest-chrome-1proc-2%2Cm-1proc%28c2%29&tochange=11d7643d276d3e1c7707b48a9c01bfa0c2f9bd36&fromchange=d8c98c89a57d169e321c55d55730132bcc178301&selectedJob=265628648
Comment hidden (Intermittent Failures Robot) |
Comment 107•4 years ago
|
||
Brian, could you please take a look at these failures? https://treeherder.mozilla.org/intermittent-failures.html#/bugdetails?startday=2019-09-04&endday=2019-09-11&tree=trunk&bug=1339326
https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=266083503&repo=autoland&lineNumber=20458
It stared to spike since September 9th. Could this be related to Bug 1576781?
Comment 108•4 years ago
|
||
(In reply to Noemi Erli[:noemi_erli] from comment #107)
Brian, could you please take a look at these failures? https://treeherder.mozilla.org/intermittent-failures.html#/bugdetails?startday=2019-09-04&endday=2019-09-11&tree=trunk&bug=1339326
https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=266083503&repo=autoland&lineNumber=20458
It stared to spike since September 9th. Could this be related to Bug 1576781?
No, I don't think this could be related. Bug 1576781 adds some functionality which isn't yet used anywhere.
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment 111•4 years ago
|
||
In the last 7 days there were 36 failures associated with this bug: https://treeherder.mozilla.org/intermittent-failures.html#/bugdetails?startday=2019-09-13&endday=2019-09-20&tree=all&bug=1339326
Recent failure log: https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=267135687&repo=autoland&lineNumber=20357
Occurs on macosx1014-64-shippable, macosx1014-64 opt and debug build types.
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Updated•4 years ago
|
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Comment hidden (Intermittent Failures Robot) |
Updated•1 year ago
|
Description
•