mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Fix memory leak in unit tests
This commit is contained in:
@@ -691,9 +691,11 @@ TEST(test_srs_power, tpc_accumulation)
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
logInit();
|
||||
load_configmodule(argc, argv, CONFIG_ENABLECMDLINEONLY);
|
||||
configmodule_interface_t *uniqCfg = load_configmodule(argc, argv, CONFIG_ENABLECMDLINEONLY);
|
||||
g_log->log_component[MAC].level = OAILOG_DEBUG;
|
||||
g_log->log_component[NR_MAC].level = OAILOG_DEBUG;
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
int ret = RUN_ALL_TESTS();
|
||||
end_configmodule(uniqCfg);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -171,9 +171,11 @@ TEST(test_init_ra, four_step_cfra)
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
logInit();
|
||||
load_configmodule(argc, argv, CONFIG_ENABLECMDLINEONLY);
|
||||
configmodule_interface_t *uniqCfg = load_configmodule(argc, argv, CONFIG_ENABLECMDLINEONLY);
|
||||
g_log->log_component[MAC].level = OAILOG_DEBUG;
|
||||
g_log->log_component[NR_MAC].level = OAILOG_DEBUG;
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
int ret = RUN_ALL_TESTS();
|
||||
end_configmodule(uniqCfg);
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user