From a7fc15ca320649505f346e8566d5112f63204d9b Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Thu, 9 Feb 2023 19:29:07 +0100 Subject: [PATCH] tests: remove unused variables Clang (unlike GCC) reported certain GLib autopointers as unused. Remove them. Signed-off-by: Bartosz Golaszewski --- tests/tests-edge-event.c | 2 -- tests/tests-info-event.c | 1 - 2 files changed, 3 deletions(-) diff --git a/tests/tests-edge-event.c b/tests/tests-edge-event.c index 9281dd9..0ff7dc8 100644 --- a/tests/tests-edge-event.c +++ b/tests/tests-edge-event.c @@ -526,7 +526,6 @@ GPIOD_TEST_CASE(event_copy) g_autoptr(struct_gpiod_line_settings) settings = NULL; g_autoptr(struct_gpiod_line_config) line_cfg = NULL; g_autoptr(struct_gpiod_line_request) request = NULL; - g_autoptr(GThread) thread = NULL; g_autoptr(struct_gpiod_edge_event_buffer) buffer = NULL; g_autoptr(struct_gpiod_edge_event) copy = NULL; struct gpiod_edge_event *event; @@ -573,7 +572,6 @@ GPIOD_TEST_CASE(reading_more_events_than_the_queue_contains_doesnt_block) g_autoptr(struct_gpiod_line_settings) settings = NULL; g_autoptr(struct_gpiod_line_config) line_cfg = NULL; g_autoptr(struct_gpiod_line_request) request = NULL; - g_autoptr(GThread) thread = NULL; g_autoptr(struct_gpiod_edge_event_buffer) buffer = NULL; gint ret; diff --git a/tests/tests-info-event.c b/tests/tests-info-event.c index a0cf5b6..20e91a8 100644 --- a/tests/tests-info-event.c +++ b/tests/tests-info-event.c @@ -206,7 +206,6 @@ GPIOD_TEST_CASE(chip_fd_can_be_polled) g_autoptr(struct_gpiod_info_event) event = NULL; g_autoptr(struct_gpiod_line_config) line_cfg = NULL; g_autoptr(struct_gpiod_line_settings) settings = NULL; - g_autoptr(struct_gpiod_line_request) request = NULL; g_autoptr(GThread) thread = NULL; struct gpiod_line_info *evinfo; struct request_ctx ctx; -- 2.30.2