# # Copyright 2013-2015 The srsLTE Developers. See the # COPYRIGHT file at the top-level directory of this distribution. # # This file is part of the srsLTE library. # # srsLTE is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # srsLTE is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in # the LICENSE file in the top-level directory of this distribution # and at http://www.gnu.org/licenses/. # ######################################################################## # RATEMATCHING TEST ######################################################################## ADD_EXECUTABLE(rm_conv_test rm_conv_test.c) TARGET_LINK_LIBRARIES(rm_conv_test srslte) ADD_EXECUTABLE(rm_turbo_test rm_turbo_test.c) TARGET_LINK_LIBRARIES(rm_turbo_test srslte) ADD_TEST(rm_conv_test_1 rm_conv_test -t 480 -r 1920) ADD_TEST(rm_conv_test_2 rm_conv_test -t 1920 -r 480) ADD_TEST(rm_turbo_test_1 rm_turbo_test -e 1920) ADD_TEST(rm_turbo_test_2 rm_turbo_test -e 8192) BuildMex(MEXNAME rm_turbo_rx SOURCES rm_turbo_rx_mex.c LIBRARIES srslte srslte_mex) ######################################################################## # Turbo Coder TEST ######################################################################## ADD_EXECUTABLE(turbodecoder_test turbodecoder_test.c) TARGET_LINK_LIBRARIES(turbodecoder_test srslte) ADD_TEST(turbodecoder_test_504_1 turbodecoder_test -n 100 -s 1 -l 504 -e 1.0 -t) ADD_TEST(turbodecoder_test_504_2 turbodecoder_test -n 100 -s 1 -l 504 -e 2.0 -t) ADD_TEST(turbodecoder_test_6114_1_5 turbodecoder_test -n 100 -s 1 -l 6144 -e 1.5 -t) ADD_TEST(turbodecoder_test_known turbodecoder_test -n 1 -s 1 -k -e 0.5) BuildMex(MEXNAME turbodecoder SOURCES turbodecoder_test_mex.c LIBRARIES srslte srslte_mex) ADD_EXECUTABLE(turbocoder_test turbocoder_test.c) TARGET_LINK_LIBRARIES(turbocoder_test srslte) ADD_TEST(turbocoder_test_all turbocoder_test) ######################################################################## # Viterbi TEST ######################################################################## ADD_EXECUTABLE(viterbi_test viterbi_test.c) TARGET_LINK_LIBRARIES(viterbi_test srslte) ADD_TEST(viterbi_40_0 viterbi_test -n 1000 -s 1 -l 40 -k 7 -t -e 0.0) ADD_TEST(viterbi_40_2 viterbi_test -n 1000 -s 1 -l 40 -k 7 -t -e 2.0) ADD_TEST(viterbi_40_3 viterbi_test -n 1000 -s 1 -l 40 -k 7 -t -e 3.0) ADD_TEST(viterbi_40_4 viterbi_test -n 1000 -s 1 -l 40 -k 7 -t -e 4.5) ADD_TEST(viterbi_1000_0 viterbi_test -n 100 -s 1 -l 1000 -k 7 -t -e 0.0) ADD_TEST(viterbi_1000_2 viterbi_test -n 100 -s 1 -l 1000 -k 7 -t -e 2.0) ADD_TEST(viterbi_1000_3 viterbi_test -n 100 -s 1 -l 1000 -k 7 -t -e 3.0) ADD_TEST(viterbi_1000_4 viterbi_test -n 100 -s 1 -l 1000 -k 7 -t -e 4.5) BuildMex(MEXNAME viterbi SOURCES viterbi_test_mex.c LIBRARIES srslte srslte_mex) ######################################################################## # CRC TEST ######################################################################## ADD_EXECUTABLE(crc_test crc_test.c) TARGET_LINK_LIBRARIES(crc_test srslte) ADD_TEST(crc_24A crc_test -n 5001 -l 24 -p 0x1864CFB -s 1) ADD_TEST(crc_24B crc_test -n 5001 -l 24 -p 0x1800063 -s 1) ADD_TEST(crc_16 crc_test -n 5001 -l 16 -p 0x11021 -s 1) ADD_TEST(crc_8 crc_test -n 5001 -l 8 -p 0x19B -s 1)