tests/kms_render: don't loop through modes
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 15 May 2014 14:35:32 +0000 (16:35 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 15 May 2014 14:36:08 +0000 (16:36 +0200)
We kinda have testdisplay for this ... and doing this tends to take
forever.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77709
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
tests/kms_render.c

index 380bb37..d9c0a58 100644 (file)
@@ -178,14 +178,10 @@ static void test_connector(const char *test_name,
        int i;
 
        igt_get_all_formats(&formats, &format_count);
-       for (i = 0; i < cconf->connector->count_modes; i++) {
-               int j;
-
-               for (j = 0; j < format_count; j++)
-                       test_format(test_name,
-                                   cconf, &cconf->connector->modes[i],
-                                   formats[j], flags);
-       }
+       for (i = 0; i < format_count; i++)
+               test_format(test_name,
+                           cconf, &cconf->connector->modes[i],
+                           formats[i], flags);
 }
 
 static int run_test(const char *test_name, enum test_flags flags)