<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - [SNB]igt/pm_rps/min-max-config-loaded fails"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=75146#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - [SNB]igt/pm_rps/min-max-config-loaded fails"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=75146">bug 75146</a>
              from <span class="vcard"><a class="email" href="mailto:daniel@ffwll.ch" title="Daniel Vetter <daniel@ffwll.ch>"> <span class="fn">Daniel Vetter</span></a>
</span></b>
        <pre>Does the below igt patch help? Please attach the new output if it still fails
...

diff --git a/tests/pm_rps.c b/tests/pm_rps.c
index a652cf580dc7..fd72ecad735d 100644
--- a/tests/pm_rps.c
+++ b/tests/pm_rps.c
@@ -439,7 +439,7 @@ static void idle_check(void)
 }

 #define LOADED_WAIT_TIMESTEP_MSEC 100
-#define LOADED_WAIT_TIMEOUT_MSEC 3000
+#define LOADED_WAIT_TIMEOUT_MSEC 10000
 static void loaded_check(void)
 {
        int freqs[NUMFREQ];
@@ -457,7 +457,7 @@ static void loaded_check(void)
                wait += LOADED_WAIT_TIMESTEP_MSEC;
        } while (wait < LOADED_WAIT_TIMEOUT_MSEC);

-       igt_assert(freqs[CUR] == freqs[MAX]);
+       igt_assert_f(freqs[CUR] == freqs[MAX], "cur: %i, max: %i\n",
freqs[CUR], freqs[MAX]);
        igt_debug("Required %d msec to reach cur=max\n", wait);
 }</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 on the CC list for the bug.</li>
      </ul>
    </body>
</html>