-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firefox: false negatives Docker container #14485
Comments
There are some discrepencies between the two examples other than Docker: the first one used Although these differences don't seem crucial, Mike, could you try to eliminate the other variables as much as possible? |
Couldn't hurt, @Hexcles. Here's a more authentic version of the "bare metal" command:
And here's the corresponding Docker command:
These changes did not affect the test results in either environment. Would you mind verifying from your machine? |
Sorry but I don't know the reftest part of Marionette. @jgraham and @gsnedders might be the best persons to talk to at the moment. |
https://searchfox.org/mozilla-central/source/testing/marionette/listener.js#1641 is waiting for the reftest-wait to be removed, and after that we check if there are pending paints before returning. So the bug is at least not trivial. I strongly suspect that the problem here is actually related to focus. https://hg.mozilla.org/try/raw-rev/91724447c60cefbf672e607ecb91fe4070a4de52 is an attempt to ensure that the focus is correctly set, although I'm not sure what's there is enough. I don't know if you can repeat your test with that patch applied? |
Can you use the |
False negatives in Firefox/Docker container
Some tests fail in Firefox only when executed within a Docker container. For example
Reports:
While
Reports:
This is apparent on the results published on wpt.fyi, as well (using WPT commit 5349c6a):
All of these tests use the
reftest-wait
class to signal readiness. The failure logs include Base64-encoded images which indicate that the screenshot is being taken before that class is removed.I haven't been able to debug this very far because Firefox does not use the in-tree "wait" script designed for Marionette but instead an alternate implementation which is bundled into the browser. I suspect this effects many more tests, but it's difficult to say without a better understanding of the problem.
@jgraham @whimboo would you mind taking a look?
The text was updated successfully, but these errors were encountered: