mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 18:06:13 +00:00
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:
parent
943511a3ab
commit
6797ca8c75
@ -178,14 +178,10 @@ static void test_connector(const char *test_name,
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
igt_get_all_formats(&formats, &format_count);
|
igt_get_all_formats(&formats, &format_count);
|
||||||
for (i = 0; i < cconf->connector->count_modes; i++) {
|
for (i = 0; i < format_count; i++)
|
||||||
int j;
|
test_format(test_name,
|
||||||
|
cconf, &cconf->connector->modes[i],
|
||||||
for (j = 0; j < format_count; j++)
|
formats[i], flags);
|
||||||
test_format(test_name,
|
|
||||||
cconf, &cconf->connector->modes[i],
|
|
||||||
formats[j], flags);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int run_test(const char *test_name, enum test_flags flags)
|
static int run_test(const char *test_name, enum test_flags flags)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user