diff --git a/lib/src/phy/phch/test/CMakeLists.txt b/lib/src/phy/phch/test/CMakeLists.txt index ad3361e6f..249e97542 100644 --- a/lib/src/phy/phch/test/CMakeLists.txt +++ b/lib/src/phy/phch/test/CMakeLists.txt @@ -199,6 +199,10 @@ add_executable(pdcch_test pdcch_test.c) target_link_libraries(pdcch_test srsran_phy) foreach (nof_prb 6 15 25 50 75 100) + # Currently, the ARM platforms srsRAN has been tested are not capable of running 100PRB. So, skip 100 PRB in ARM + if (HAVE_NEON AND (${nof_prb} EQUAL 100)) + continue() + endif () foreach (nof_ports 1 2) foreach (cfi 1 2 3) foreach (snr auto 15 300)