aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests/smpp
AgeCommit message (Collapse)AuthorFilesLines
2021-02-22tests: Replace deprecated API log_set_print_filenamePau Espin Pedrol1-1/+1
Change-Id: I2bd75313daab58704625245af2dd39d88ee42872
2021-02-22tests: Explicitly drop category from logPau Espin Pedrol1-0/+2
Let's disable category here since we don't care about its formatting here. In any case, every test relying on logging output validation should always explicitly state the config to avoid issues in the future if default values change. Change-Id: I2697ec547468019a544b66daf9dbb58aa8d9772b Related: OS#5034
2016-09-15Consistenly format variables in */Makefile.am filesAlexander Huemer1-8/+35
Change-Id: Ifa21513c007072314097b7bec188579972dc1694
2016-06-18rm dup: use channel type names from libosmocoreNeels Hofmeyr1-1/+1
In gsm_lchant_name(enum gsm_chan_t), use the gsm_chan_t_names value strings from libosmocore instead of redefining the same strings. The list from libosmocore is also more complete, including CCCH and PDTCH. Add a todo comment to move to libosmocore. In consequence, libosmogsm linkage needs to be added to osmo-bsc_mgcp, mgcp_test, mgcp_transcoding_test and smpp_mirror, smpp_test. Change-Id: If65ee7c0619cbc0acb0a15045bd5a969442c93cc
2016-02-18Patch to make openbsc find libsmpp34Ruben Undheim1-1/+1
This patch lets the build script for openbsc find the libsmpp34 installation with the help of pkg-config instead of assuming the header files are in /usr/include.
2015-11-21tests/smpp: Fix linking orderHarald Welte1-2/+3
At least when using system-wide libtalloc, the LIBOSMOCORE_LIBS must come last, after the static libraries under libcommon.
2013-09-19smpp: Fix the make distcheck for smppHolger Hans Peter Freyther1-2/+2
DISTCHECK_CONFIGURE_FLAGS="--enable-smpp" make distcheck
2013-07-27smpp: Move the coding/mode detection into a utils fileHolger Hans Peter Freyther4-0/+88
Make sure to not ever have issues with this code again, move the utility code to a new file and create a basic testcase. The method currently has 100% line and branch coverage. My initial patched missed the smpp_utils.c file and I re-did the copying (and verifying the branch coverage)