summaryrefslogtreecommitdiff
path: root/tests/kms_cursor_crc.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/kms_cursor_crc.c')
-rw-r--r--tests/kms_cursor_crc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 5e697eaa..ddcdb7d7 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -354,7 +354,8 @@ static void run_test_generic(data_t *data, int cursor_max_size)
igt_require(cursor_max_size >= cursor_size);
sprintf(c_size, "%d", cursor_size);
- create_cursor_fb(data, cursor_size, cursor_size);
+ igt_fixture
+ create_cursor_fb(data, cursor_size, cursor_size);
/* Using created cursor FBs to test cursor support */
igt_subtest_f("cursor-%s-onscreen", c_size)
@@ -365,8 +366,10 @@ static void run_test_generic(data_t *data, int cursor_max_size)
run_test(data, test_crc_sliding, cursor_size, cursor_size);
igt_subtest_f("cursor-%s-random", c_size)
run_test(data, test_crc_random, cursor_size, cursor_size);
- }
+ igt_fixture
+ igt_remove_fb(data->drm_fd, &data->fb);
+ }
}
uint64_t cursor_width, cursor_height;