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.
This commit is contained in:
Tobias Brunner 2016-05-12 13:49:11 +02:00
parent 4082821964
commit 3b50e6fc3e
1 changed files with 0 additions and 3 deletions

View File

@ -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;