Disable vrtsim unit tests

the vrtsim unit tests do not run reliably in the CI. Disable it for the
moment while investigating why.

Signed-off-by: Robert Schmidt <robert.schmidt@openairinterface.org>
This commit is contained in:
Robert Schmidt
2026-05-28 10:29:15 +02:00
parent 977e60751c
commit 0d32de0f4d

View File

@@ -5,20 +5,20 @@ target_link_libraries(test_vrtsim PRIVATE vrtsim_static UTIL CONFIG_LIB GTest::g
if (OAI_VRTSIM_TAPS_CLIENT)
target_link_libraries(test_vrtsim PRIVATE taps_client nanomsg)
endif()
add_dependencies(tests test_vrtsim)
add_test(NAME test_vrtsim
COMMAND ./test_vrtsim)
#add_dependencies(tests test_vrtsim)
#add_test(NAME test_vrtsim
# COMMAND ./test_vrtsim)
if (OAI_VRTSIM_TAPS_CLIENT)
add_executable(test_vrtsim_taps test_vrtsim_taps.cpp)
target_link_libraries(test_vrtsim_taps PRIVATE vrtsim_static UTIL CONFIG_LIB GTest::gtest dl shlib_loader taps_client nanomsg flatbuffers taps_api)
add_dependencies(tests test_vrtsim_taps)
add_test(NAME test_vrtsim_taps
COMMAND ./test_vrtsim_taps)
#add_dependencies(tests test_vrtsim_taps)
#add_test(NAME test_vrtsim_taps
# COMMAND ./test_vrtsim_taps)
endif()
add_executable(test_vrtsim_cirdb test_vrtsim_cirdb.cpp)
target_link_libraries(test_vrtsim_cirdb PRIVATE vrtsim_static UTIL CONFIG_LIB GTest::gtest dl shlib_loader yaml-cpp)
add_dependencies(tests test_vrtsim_cirdb)
add_test(NAME test_vrtsim_cirdb
COMMAND ./test_vrtsim_cirdb)
#add_dependencies(tests test_vrtsim_cirdb)
#add_test(NAME test_vrtsim_cirdb
# COMMAND ./test_vrtsim_cirdb)