<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [CI][DRMTIP] igt@kms_* - skip - Test requirement: connector"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=111314#c2">Comment # 2</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [CI][DRMTIP] igt@kms_* - skip - Test requirement: connector"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=111314">bug 111314</a>
              from <span class="vcard"><a class="email" href="mailto:stanislav.lisovskiy@intel.com" title="Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>"> <span class="fn">Stanislav Lisovskiy</span></a>
</span></b>
        <pre>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.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>