aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-09-29 14:33:35 +0200
committerMax <msuraev@sysmocom.de>2017-10-02 08:38:34 +0000
commit918cfeb7870b118842c710dd88226ac70529fb5e (patch)
treea440eaf175e20ea39470ec0ff01cf93560712706
parent14f9772f146dd8890bfbe15eb030d7fedbeb6ab8 (diff)
Fix repo split aftermath
* remove checks for non-existent tests * always enable bsc and nat-trie tests because both are built unconditionally * enable gsm0408 test which was removed by mistake * adjust gsm0408 test output to remove SMS-related results Change-Id: I73ad079a6333ba56e73b7c4d1d0e9c8255c2a03b Related: OS#2257
-rw-r--r--tests/atlocal.in7
-rw-r--r--tests/testsuite.at8
2 files changed, 6 insertions, 9 deletions
diff --git a/tests/atlocal.in b/tests/atlocal.in
index 362bfa9df..e69de29bb 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -1,7 +0,0 @@
-enable_nat_test='@osmo_ac_build_nat@'
-enable_smpp_test='@osmo_ac_build_smpp@'
-enable_bsc_test='@osmo_ac_build_bsc@'
-enable_mgcp_transcoding_test='@osmo_ac_mgcp_transcoding@'
-enable_sgsn_test='@found_libgtp_and_libcares@'
-enable_oap_test='@found_libgtp_and_libcares@'
-enable_gtphub_test='@found_libgtp_and_libcares@'
diff --git a/tests/testsuite.at b/tests/testsuite.at
index a412f7cae..50f68e12e 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -1,6 +1,12 @@
AT_INIT
AT_BANNER([Regression tests.])
+AT_SETUP([gsm0408])
+AT_KEYWORDS([gsm0408])
+cat $abs_srcdir/gsm0408/gsm0408_test.ok > expout
+AT_CHECK([$abs_top_builddir/tests/gsm0408/gsm0408_test], [], [expout], [ignore])
+AT_CLEANUP
+
AT_SETUP([bsc_subscr])
AT_KEYWORDS([bsc_subscr])
cat $abs_srcdir/subscr/bsc_subscr_test.ok > expout
@@ -16,7 +22,6 @@ AT_CLEANUP
AT_SETUP([bsc-nat-trie])
AT_KEYWORDS([bsc-nat-trie])
-AT_CHECK([test "$enable_nat_test" != no || exit 77])
cp $abs_srcdir/bsc-nat-trie/prefixes.csv .
cat $abs_srcdir/bsc-nat-trie/bsc_nat_trie_test.ok > expout
AT_CHECK([$abs_top_builddir/tests/bsc-nat-trie/bsc_nat_trie_test], [], [expout], [ignore])
@@ -30,7 +35,6 @@ AT_CLEANUP
AT_SETUP([bsc])
AT_KEYWORDS([bsc])
-AT_CHECK([test "$enable_bsc_test" != no || exit 77])
cat $abs_srcdir/bsc/bsc_test.ok > expout
AT_CHECK([$abs_top_builddir/tests/bsc/bsc_test], [], [expout], [ignore])
AT_CLEANUP