mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-20 06:16:13 +00:00
tests/kms_force_connector: free the display struct when no longer needed
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
parent
e9ed1a37fc
commit
5570060d33
@ -36,7 +36,6 @@ igt_main
|
|||||||
int drm_fd = 0;
|
int drm_fd = 0;
|
||||||
drmModeRes *res;
|
drmModeRes *res;
|
||||||
drmModeConnector *vga_connector = NULL, *temp;
|
drmModeConnector *vga_connector = NULL, *temp;
|
||||||
igt_display_t display;
|
|
||||||
int start_n_modes;
|
int start_n_modes;
|
||||||
|
|
||||||
igt_fixture {
|
igt_fixture {
|
||||||
@ -60,6 +59,8 @@ igt_main
|
|||||||
}
|
}
|
||||||
|
|
||||||
igt_subtest("force-connector-state") {
|
igt_subtest("force-connector-state") {
|
||||||
|
igt_display_t display;
|
||||||
|
|
||||||
/* force the connector on and check the reported values */
|
/* force the connector on and check the reported values */
|
||||||
kmstest_force_connector(drm_fd, vga_connector, FORCE_CONNECTOR_ON);
|
kmstest_force_connector(drm_fd, vga_connector, FORCE_CONNECTOR_ON);
|
||||||
temp = drmModeGetConnector(drm_fd, vga_connector->connector_id);
|
temp = drmModeGetConnector(drm_fd, vga_connector->connector_id);
|
||||||
@ -71,6 +72,7 @@ igt_main
|
|||||||
kmstest_set_vt_graphics_mode();
|
kmstest_set_vt_graphics_mode();
|
||||||
igt_display_init(&display, drm_fd);
|
igt_display_init(&display, drm_fd);
|
||||||
igt_display_commit(&display);
|
igt_display_commit(&display);
|
||||||
|
igt_display_fini(&display);
|
||||||
|
|
||||||
|
|
||||||
/* force the connector off */
|
/* force the connector off */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user