X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=o-du%2Fphy.git;a=blobdiff_plain;f=fhi_lib%2Ftest%2Ftest_xran%2Fchain_tests.cc;fp=fhi_lib%2Ftest%2Ftest_xran%2Fchain_tests.cc;h=c0dac46d91924c3e499b414ad63b6d25407021eb;hp=67576568932825b9a05ce4d8fd43c02fd7f7dc48;hb=892daba4c616407f16506415d5a69549519ef11d;hpb=76b4495d593ccf45d712db1a3ec96fa9d2d8f5f5 diff --git a/fhi_lib/test/test_xran/chain_tests.cc b/fhi_lib/test/test_xran/chain_tests.cc index 6757656..c0dac46 100644 --- a/fhi_lib/test/test_xran/chain_tests.cc +++ b/fhi_lib/test/test_xran/chain_tests.cc @@ -117,6 +117,11 @@ void utcp_fh_rx_callback(void *pCallbackTag, xran_status_t status) return; } +void utcp_fh_bfw_callback(void *pCallbackTag, xran_status_t status) +{ + return; +} + void utcp_fh_srs_callback(void *pCallbackTag, xran_status_t status) { return; @@ -234,7 +239,7 @@ TEST_P(TestChain, CPlaneDLPerf) { xranlib->Init(0, &m_xranConf); xranlib->Open(0, send_mbuf_cp_perf, send_mbuf_up, - (void *)utcp_fh_rx_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); + (void *)utcp_fh_rx_callback, (void *)utcp_fh_bfw_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); performance("C", module_name, xran_ut_tx_cp_dl); @@ -247,7 +252,7 @@ TEST_P(TestChain, CPlaneULPerf) { xranlib->Init(0, &m_xranConf); xranlib->Open(0, send_mbuf_cp_perf, send_mbuf_up, - (void *)utcp_fh_rx_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); + (void *)utcp_fh_rx_callback, (void *)utcp_fh_bfw_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); performance("C", module_name, xran_ut_tx_cp_ul); @@ -268,7 +273,7 @@ TEST_P(TestChain, UPlaneDLPerf) /* need to disable CP to make U-Plane work without CP */ xranlib->apply_cpenable(false); xranlib->Open(0, send_mbuf_cp_perf, send_mbuf_up, - (void *)utcp_fh_rx_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); + (void *)utcp_fh_rx_callback, (void *)utcp_fh_bfw_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); performance("C", module_name, xran_ut_tx_up_dl); @@ -292,7 +297,7 @@ TEST_P(TestChain, APlaneDLPerf) /* Enable CP by force to make UP work by CP's section information */ xranlib->apply_cpenable(true); xranlib->Open(0, send_mbuf_cp_perf, send_mbuf_up, - (void *)utcp_fh_rx_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); + (void *)utcp_fh_rx_callback, (void *)utcp_fh_bfw_callback, (void *)utcp_fh_rx_prach_callback, (void *)utcp_fh_srs_callback); performance("C", module_name, xran_ut_tx_cpup_dl);