# # Copyright 2013-2021 Software Radio Systems Limited # # By using this file, you agree to the terms and conditions set # forth in the LICENSE file which can be found at the top level of # the distribution. # set(CTEST_LABELS "srsue;phy") include_directories( ${Boost_INCLUDE_DIRS} ${SEC_INCLUDE_DIRS} ${PROJECT_SOURCE_DIR} ) link_directories( ${Boost_LIBRARY_DIRS} ${SEC_LIBRARY_DIRS} ) add_executable(ue_phy_test ue_phy_test.cc) target_link_libraries(ue_phy_test srsue_phy srsran_common srsran_phy srsran_radio ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) # Test disabled, it is not 100 deterministic. #add_test(ue_phy_test ue_phy_test) add_executable(scell_search_test scell_search_test.cc) target_link_libraries(scell_search_test srsue_phy srsran_common srsran_phy srsran_radio ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) # Test LTE cell search with a complex environment and an odd measurement period add_lte_test(scell_search_test scell_search_test --duration=5 --cell.nof_prb=6 --active_cell_list=2,3,4,5,6 --simulation_cell_list=1,2,3,4,5,6 --channel_period_s=30 --channel.hst.fd=750 --channel.delay_max=10000 --intra_freq_meas_period_ms=199) add_executable(nr_cell_search_test nr_cell_search_test.cc) target_link_libraries(nr_cell_search_test srsue_phy srsran_common srsran_phy srsran_radio ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) # Test NR cell search without delay # This test checks the search starts in the configured TTI and the NR PSS is detected correctly inside the SF add_nr_test(nr_cell_search_test nr_cell_search_test --duration=1 --ssb_period=20 --meas_period_ms=20 --meas_len_ms=1 --simulation_cell_list=500) # Test NR cell search with up 1000us delay # This test checks the search is capable to find a cell with a broad delay add_nr_test(nr_cell_search_test_delay nr_cell_search_test --duration=1 --ssb_period=20 --meas_period_ms=100 --meas_len_ms=30 --channel.delay_min=0 --channel.delay_max=1000 --simulation_cell_list=500)