aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2013-05-23 19:58:28 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-05-24 02:20:50 +0200
commit479fba171ba5d3877fc4024f4df03183ffc363b3 (patch)
tree25af744f32993b4ef2de3c50d85b738ac7763ae2 /configure.ac
parentdd34adea7a385b2246e6a7445d2bf71dc86e046b (diff)
add testsuite infrastructure and osmux test
This patch adds the testsuite infrastructure and it populates it with one test for osmux. The osmux tests makes sure that: * We get the same number of RTP messages in the input and the output path. * The payload of the RTP message is reconstructed correctly. * The reconstructed timing is correct.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 411eec9..28dde0c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,6 +3,7 @@ AC_INIT([libosmo-netif],
[openbsc-devel@lists.openbsc.org])
AM_INIT_AUTOMAKE([dist-bzip2])
+AC_CONFIG_TESTDIR(tests)
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
@@ -56,4 +57,5 @@ AC_OUTPUT(
src/channel/abis/Makefile
examples/Makefile
examples/channel/Makefile
+ tests/Makefile
Makefile)