blob: 5e8724836568ecbda025ef3d326a147c51353992 [file] [log] [blame]
Holger Hans Peter Freyther5c65e792012-10-11 08:05:14 +02001AT_INIT
2AT_BANNER([Regression tests.])
3
4# Example for tests.. copy and uncomment. This creates a new category
5# and test. It will copy the expected output to expout and then run
6# the given test. The stdout will be compared with the expout to determine
7# if the test was successfull.
8# AT_SETUP([NAME])
9# AT_KEYWORDS([NAME])
10# cat $abs_srcdir/NAME/NAME_test.ok > expout
11# AT_CHECK([$abs_top_builddir/tests/NAME/NAME_test], [], [expout])
12# AT_CLEANUP
Holger Hans Peter Freytherbc5dcb12012-10-11 08:25:36 +020013
Jacob Erlbeck36106ae2014-03-20 19:14:33 +010014AT_SETUP([ipa_recv])
15AT_KEYWORDS([ipa_recv])
16cat $abs_srcdir/ipa_recv/ipa_recv_test.ok > expout
17AT_CHECK([$abs_top_builddir/tests/ipa_recv/ipa_recv_test], [], [expout],[ignore])
18AT_CLEANUP
19
Holger Hans Peter Freytherbc5dcb12012-10-11 08:25:36 +020020AT_SETUP([subchan_demux])
21AT_KEYWORDS([subchan_demux])
22cat $abs_srcdir/subchan_demux/subchan_demux_test.ok > expout
23AT_CHECK([$abs_top_builddir/tests/subchan_demux/subchan_demux_test], [], [expout])
24AT_CLEANUP
Jacob Erlbeck36106ae2014-03-20 19:14:33 +010025
Harald Welte91045972020-03-08 22:23:30 +010026AT_SETUP([rtp_test])
27AT_KEYWORDS([rtp_test])
28cat $abs_srcdir/rtp_test/rtp_test.ok > expout
29AT_CHECK([$abs_top_builddir/tests/rtp_test/rtp_test], [ignore], [expout])
30AT_CLEANUP
31