From 3b50e6fc3ea080e552b6a43b2e7e766a77ab5c0f Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 12 May 2016 13:49:11 +0200 Subject: [PATCH] unit-tests: Don't unload plugins before calling libcharon_deinit() libcharon_deinit() already calls all the functions we called manually. Unloading the plugins will not work if charon->initialize() is called as charon's static plugin features would already be unloaded before the destroyed members are accessed in destroy() to flush them. --- src/libcharon/tests/libcharon_tests.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/libcharon/tests/libcharon_tests.c b/src/libcharon/tests/libcharon_tests.c index 4692c3094..e25e5434f 100644 --- a/src/libcharon/tests/libcharon_tests.c +++ b/src/libcharon/tests/libcharon_tests.c @@ -53,9 +53,6 @@ static bool test_runner_init(bool init) } else { - lib->processor->set_threads(lib->processor, 0); - lib->processor->cancel(lib->processor); - lib->plugins->unload(lib->plugins); libcharon_deinit(); } return TRUE;