<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body><span class="vcard"><a class="email" href="mailto:bugs@mblankhorst.nl" title="Maarten Lankhorst <bugs@mblankhorst.nl>"> <span class="fn">Maarten Lankhorst</span></a>
</span> changed
          <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - [IGT] kms_properties produces Failed assertion when checking connector properties"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=99897">bug 99897</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Resolution</td>
           <td>---
           </td>
           <td>FIXED
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Status</td>
           <td>NEW
           </td>
           <td>RESOLVED
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - [IGT] kms_properties produces Failed assertion when checking connector properties"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=99897#c8">Comment # 8</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - [IGT] kms_properties produces Failed assertion when checking connector properties"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=99897">bug 99897</a>
              from <span class="vcard"><a class="email" href="mailto:bugs@mblankhorst.nl" title="Maarten Lankhorst <bugs@mblankhorst.nl>"> <span class="fn">Maarten Lankhorst</span></a>
</span></b>
        <pre>Try 2, blacklist one more property..

Can you retest or close if there's another failure?

commit 32c4b69a9d18ad7ec62f3e656a08f3325fb942c9
Author: Maarten Lankhorst <<a href="mailto:maarten.lankhorst@linux.intel.com">maarten.lankhorst@linux.intel.com</a>>
Date:   Wed Mar 15 14:39:03 2017 +0100

    kms_properties: Blacklist legacy link-status connector property.

    This will be fixed by converting all connectors to atomic, but this
    fails for now. Blacklist it just like crtc_id temporarily.

    Signed-off-by: Maarten Lankhorst <<a href="mailto:maarten.lankhorst@linux.intel.com">maarten.lankhorst@linux.intel.com</a>>

diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index 8e2444732f5f..591e1a019190 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -75,7 +75,8 @@ static bool ignore_connector_property(const char *name, bool
atomic)
                return true;

        /* FIXME: Remove when all intel connectors are converted to atomic. */
-       if (!atomic && !strcmp(name, "CRTC_ID"))
+       if (!atomic && (!strcmp(name, "CRTC_ID") ||
+                       !strcmp(name, "link-status")))
                return true;

        if (atomic && !strcmp(name, "DPMS"))</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>