From 834ecd733d29971b6422f2cbab7f2fc8ab210f4a Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 8 Feb 2022 11:34:08 +0100 Subject: [PATCH] test: call pw_deinit() at end of test --- test/test-lib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test-lib.c b/test/test-lib.c index cb61a696a..1d2527a58 100644 --- a/test/test-lib.c +++ b/test/test-lib.c @@ -44,6 +44,8 @@ PWTEST(library_version) pwtest_str_eq(headerversion, version_expected); pwtest_str_eq(libversion, version_expected); + pw_deinit(); + return PWTEST_PASS; }