aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testsuite.at
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-11-20 12:02:14 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-11-20 12:11:57 +0100
commit72df7f09ecb0dc0bb6352aa9ec30728ba896341d (patch)
tree5c8f38e8030708a1ff269704b8e2b8d7ee3cf6e2 /tests/testsuite.at
parentebd4f4563c819e36544759aef85fc6836c244c88 (diff)
tests: Run the existing tests with GNU Autotest
SCCP: Use DST/SRC Ref instead of the pointer value to create stable releases.
Diffstat (limited to 'tests/testsuite.at')
-rw-r--r--tests/testsuite.at20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at
new file mode 100644
index 0000000..8907ffa
--- /dev/null
+++ b/tests/testsuite.at
@@ -0,0 +1,20 @@
+AT_INIT
+AT_BANNER([Regression tests.])
+
+AT_SETUP([m2ua])
+AT_KEYWORDS([m2ua])
+cat $abs_srcdir/m2ua/m2ua_test.ok > expout
+AT_CHECK([$abs_top_builddir/tests/m2ua/m2ua_test], [], [expout], [ignore])
+AT_CLEANUP
+
+AT_SETUP([mtp])
+AT_KEYWORDS([mtp])
+cat $abs_srcdir/mtp/mtp_parse_test.ok > expout
+AT_CHECK([$abs_top_builddir/tests/mtp/mtp_parse_test], [], [expout], [ignore])
+AT_CLEANUP
+
+AT_SETUP([sccp])
+AT_KEYWORDS([sccp])
+cat $abs_srcdir/sccp/sccp_test.ok > expout
+AT_CHECK([$abs_top_builddir/tests/sccp/sccp_test], [], [expout], [ignore])
+AT_CLEANUP