mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 18:06:13 +00:00
tests/kms_cursor_crc: Fix up breakage
I've accidentally broken the new cursor size extensions, but it wasn't quite correct before already: Variables which are set in igt_fixtures _must_ be outside of the stackframe of the igt_fixture block. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
a388f3b98f
commit
52edf3a177
@ -341,11 +341,12 @@ static void run_test_generic(data_t *data, int cursor_max_size)
|
||||
|
||||
}
|
||||
|
||||
uint64_t cursor_width, cursor_height;
|
||||
|
||||
igt_main
|
||||
{
|
||||
data_t data = {};
|
||||
int cursor_max_size, ret;
|
||||
uint64_t cursor_width, cursor_height;
|
||||
int ret;
|
||||
|
||||
igt_skip_on_simulation();
|
||||
|
||||
@ -371,7 +372,7 @@ igt_main
|
||||
|
||||
}
|
||||
|
||||
run_test_generic(&data, cursor_max_size);
|
||||
run_test_generic(&data, cursor_width);
|
||||
|
||||
igt_fixture {
|
||||
free(data.pipe_crc);
|
||||
|
Loading…
x
Reference in New Issue
Block a user