tests: join the thread at the end of the seqno test case
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 5 Dec 2022 13:56:45 +0000 (14:56 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 5 Dec 2022 13:56:45 +0000 (14:56 +0100)
The call to g_thread_join() is missing at the end of the test case for
event sequence numbers so add it and fix a resource leak.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
tests/tests-edge-event.c

index 66fe075b125dce7b4bd762b2ca8527050c2fd926..f39da4f7ae5db5a6107ef596f24bef9028a54b33 100644 (file)
@@ -519,6 +519,8 @@ GPIOD_TEST_CASE(seqno)
        g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 3);
        g_assert_cmpuint(gpiod_edge_event_get_global_seqno(event), ==, 2);
        g_assert_cmpuint(gpiod_edge_event_get_line_seqno(event), ==, 1);
+
+       g_thread_join(thread);
 }
 
 GPIOD_TEST_CASE(event_copy)