[Bug 111314] [CI][DRMTIP] igt at kms_* - skip - Test requirement: connector
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Fri Aug 30 08:22:45 UTC 2019
https://bugs.freedesktop.org/show_bug.cgi?id=111314
--- Comment #2 from Stanislav Lisovskiy <stanislav.lisovskiy at intel.com> ---
What all those tests have in common is that they all loop through connectors
looking for the HDMI one and set connector to NULL if they failed to find HDMI
connector:
/* find an hdmi connector */
for (int i = 0; i < res->count_connectors; i++) {
connector = drmModeGetConnectorCurrent(drm_fd, res->connectors[i]);
if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA)
break; => will break if found and assertion will not fail
drmModeFreeConnector(connector);
connector = NULL;
}
igt_require(connector); => which fails if no HDMI was found.
Does the fi-icl-dsi have HDMI connector? If not, then this test is supposed to
fail and it is correct. If it has HDMI - then we need to understand why it
didn't detect it.
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/intel-gfx-bugs/attachments/20190830/c9f6cf17/attachment.html>
More information about the intel-gfx-bugs
mailing list