Closed
Bug 1913832
Opened 5 months ago
Closed 5 months ago
[cdp] OOPIF pdf test incorrectly reported as unexpected missing
Categories
(Remote Protocol :: Agent, defect, P3)
Remote Protocol
Agent
Tracking
(firefox131 fixed)
RESOLVED
FIXED
131 Branch
Tracking | Status | |
---|---|---|
firefox131 | --- | fixed |
People
(Reporter: jdescottes, Assigned: jdescottes)
References
Details
(Whiteboard: [webdriver:m12])
Attachments
(1 file)
This is a recurring issue when doing puppeteer syncs, the test
[oopif.spec] OOPIF should evaluate on a page with a PDF viewer
has an explicit skip for Firefox + BiDi, and when running for cdp, our CI will then report
TEST-UNEXPECTED-MISSING Unexpected skipped OOPIF should evaluate on a page with a PDF viewer (oopif.spec.js)
However ALL oopifs tests should be skipped for Firefox+cdp per the following rule:
{
"testIdPattern": "[oopif.spec] *",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["cdp", "firefox"],
"expectations": ["SKIP"],
"comment": "TODO: add a comment explaining why this expectation is required (include links to issues)"
},
I suspect this is a bug in our mach command around https://searchfox.org/mozilla-central/rev/e51b2630b44a8836a7ff35a876a2d8b555041d4a/remote/mach_commands.py#319-323
if status == "SKIP":
self.logger.test_start(test_name)
if self.expected and status not in expected:
self.unexpected_skips.add(test_name)
expected = ["SKIP"]
Assignee | ||
Comment 1•5 months ago
|
||
Depends on D219565
Updated•5 months ago
|
Assignee: nobody → jdescottes
Status: NEW → ASSIGNED
Assignee | ||
Updated•5 months ago
|
Severity: -- → S3
Points: --- → 1
Priority: -- → P3
Whiteboard: [webdriver:m12]
Assignee | ||
Updated•5 months ago
|
Points: 1 → 2
Pushed by jdescottes@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/dc3cdccae212
[puppeteer] Fix expectations filter for puppeteer-test command r=webdriver-reviewers,Sasha
Assignee | ||
Updated•5 months ago
|
Points: 2 → 1
Comment 3•5 months ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 5 months ago
status-firefox131:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 131 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•