osmo-msc/tests/Makefile.am

129 lines
3.7 KiB
Makefile

SUBDIRS = \
sms_queue \
msc_vlr \
db_sms \
sdp_msg \
mncc \
csd \
$(NULL)
if BUILD_SMPP
SUBDIRS += \
smpp \
$(NULL)
endif
# The `:;' works around a Bash 3.2 bug when the output is not writeable.
$(srcdir)/package.m4: $(top_srcdir)/configure.ac
:;{ \
echo '# Signature of the current package.' && \
echo 'm4_define([AT_PACKAGE_NAME],' && \
echo ' [$(PACKAGE_NAME)])' && \
echo 'm4_define([AT_PACKAGE_TARNAME],' && \
echo ' [$(PACKAGE_TARNAME)])' && \
echo 'm4_define([AT_PACKAGE_VERSION],' && \
echo ' [$(PACKAGE_VERSION)])' && \
echo 'm4_define([AT_PACKAGE_STRING],' && \
echo ' [$(PACKAGE_STRING)])' && \
echo 'm4_define([AT_PACKAGE_BUGREPORT],' && \
echo ' [$(PACKAGE_BUGREPORT)])'; \
echo 'm4_define([AT_PACKAGE_URL],' && \
echo ' [$(PACKAGE_URL)])'; \
} >'$(srcdir)/package.m4'
EXTRA_DIST = \
testsuite.at \
$(srcdir)/package.m4 \
$(TESTSUITE) \
vty_test_runner.py \
ctrl_test_runner.py \
smpp_test_runner.py \
$(srcdir)/*.vty \
$(NULL)
TESTSUITE = $(srcdir)/testsuite
DISTCLEANFILES = \
atconfig \
$(NULL)
if ENABLE_EXT_TESTS
# don't run multiple tests concurrently so that the ports don't conflict
python-tests:
$(MAKE) vty-test
$(MAKE) ctrl-test
if BUILD_SMPP
$(MAKE) smpp-test
endif
else
python-tests:
echo "Not running python-based tests (determined at configure-time)"
endif
vty-python-test: $(top_builddir)/src/osmo-msc/osmo-msc
if BUILD_IU
IU=1 osmotestvty.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
IU=1 osmotestconfig.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
else
IU=0 osmotestvty.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
IU=0 osmotestconfig.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
endif
$(srcdir)/vty_test_runner.py -w $(abs_top_builddir) -v
rm -f $(top_builddir)/sms.db*
# Run a specific transcript test with: 'make vty-transcript-test VTY_TEST=osmo-msc.vty'
VTY_TEST ?= *.vty
# To update the VTY script from current application behavior,
# pass -u to vty_script_runner.py by doing:
# make vty-transcript-test U=-u
vty-transcript-test: $(top_builddir)/src/osmo-msc/osmo-msc
osmo_verify_transcript_vty.py -v \
-n OsmoMSC -p 4254 \
-r "$(top_builddir)/src/osmo-msc/osmo-msc -c $(top_srcdir)/doc/examples/osmo-msc/osmo-msc.cfg" \
$(U) $(srcdir)/$(VTY_TEST)
rm -f $(builddir)/sms.db*
# don't run multiple tests concurrently so that the ports don't conflict
vty-test:
$(MAKE) vty-python-test
$(MAKE) vty-transcript-test
ctrl-python-test: $(top_builddir)/src/osmo-msc/osmo-msc
$(srcdir)/ctrl_test_runner.py -w $(abs_top_builddir) -v
rm -f $(top_builddir)/sms.db*
# To update the CTRL script from current application behavior,
# pass -u to ctrl_script_runner.py by doing:
# make ctrl-transcript-test U=-u
ctrl-transcript-test:
echo "No ctrl-transcript-test exists yet"
# don't run multiple tests concurrently so that the ports don't conflict
ctrl-test:
$(MAKE) ctrl-python-test
$(MAKE) ctrl-transcript-test
smpp-test:$(top_builddir)/src/osmo-msc/osmo-msc
$(srcdir)/smpp_test_runner.py -w $(abs_top_builddir) -v
rm -f $(top_builddir)/sms.db*
check-local: atconfig $(TESTSUITE)
$(SHELL) '$(TESTSUITE)' $(TESTSUITEFLAGS)
$(MAKE) $(AM_MAKEFLAGS) python-tests
installcheck-local: atconfig $(TESTSUITE)
$(SHELL) '$(TESTSUITE)' AUTOTEST_PATH='$(bindir)' \
$(TESTSUITEFLAGS)
clean-local:
test ! -f '$(TESTSUITE)' || \
$(SHELL) '$(TESTSUITE)' --clean
AUTOM4TE = $(SHELL) $(top_srcdir)/missing --run autom4te
AUTOTEST = $(AUTOM4TE) --language=autotest
$(TESTSUITE): $(srcdir)/testsuite.at $(srcdir)/package.m4
$(AUTOTEST) -I '$(srcdir)' -o $@.tmp $@.at
mv $@.tmp $@