tests/kms_render: don't loop through modes

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>
This commit is contained in:
Daniel Vetter 2014-05-15 16:35:32 +02:00
parent 943511a3ab
commit 6797ca8c75

View 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)