diff options
author | Harald Welte <laforge@gnumonks.org> | 2016-04-25 18:46:22 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-05-06 11:21:06 +0200 |
commit | 3b6fb0880c3ab1e23a3d7d738d073b00c2a794c2 (patch) | |
tree | 081531b62c35cbe124e799ab104fe7913cb997f0 /tests/testsuite.at | |
parent | 9709b2e6fd84cab48fc7844475518f68f937bb01 (diff) |
import gprs_gsup_message.[ch] from openbsc as gsup.[ch]
Move those routines from OpenBSC to libosmogsm, so they can be
re-used from other programs. I think it was a mistake to add them only
inside the openbsc repository in the first place. We need to pay more
attention to this in the future.
Diffstat (limited to 'tests/testsuite.at')
-rw-r--r-- | tests/testsuite.at | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at index 762b10a0..aa269afb 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -190,3 +190,9 @@ AT_KEYWORDS([tlv]) cat $abs_srcdir/tlv/tlv_test.ok > expout AT_CHECK([$abs_top_builddir/tests/tlv/tlv_test], [0], [expout], [ignore]) AT_CLEANUP + +AT_SETUP([gsup]) +AT_KEYWORDS([gsup]) +cat $abs_srcdir/gsup/gsup_test.ok > expout +AT_CHECK([$abs_top_builddir/tests/gsup/gsup_test], [0], [expout], [ignore]) +AT_CLEANUP |