forked from cellular-infrastructure/osmo-pcu
tests: Create tests directory and move the VTY testing into there
parent
421fe79e39
commit
bb00704871
13
Makefile.am
13
Makefile.am
|
@ -1,16 +1,5 @@
|
|||
AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
|
||||
|
||||
SUBDIRS = src examples
|
||||
SUBDIRS = src examples tests
|
||||
EXTRA_DIST = osmoappdesc.py
|
||||
|
||||
if ENABLE_VTY_TESTS
|
||||
python-tests: $(BUILT_SOURCES)
|
||||
osmotestvty.py -p $(top_srcdir) -w $(builddir) -v
|
||||
osmotestconfig.py -p $(top_srcdir) -w $(builddir) -v
|
||||
else
|
||||
python-tests: $(BUILT_SOURCES)
|
||||
@echo "Not running python-based tests (determined at configure-time)"
|
||||
endif
|
||||
|
||||
check-local: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) python-tests
|
||||
|
|
|
@ -60,4 +60,5 @@ AM_CONDITIONAL(ENABLE_VTY_TESTS, test "x$enable_vty_tests" = "xyes")
|
|||
AC_OUTPUT(
|
||||
src/Makefile
|
||||
examples/Makefile
|
||||
tests/Makefile
|
||||
Makefile)
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
|
||||
|
||||
# Python testing
|
||||
if ENABLE_VTY_TESTS
|
||||
python-tests: $(BUILT_SOURCES)
|
||||
osmotestvty.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
|
||||
osmotestconfig.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
|
||||
|
||||
else
|
||||
python-tests: $(BUILT_SOURCES)
|
||||
@echo "Not running python-based tests (determined at configure-time)"
|
||||
endif
|
||||
|
||||
check-local: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) python-tests
|
Loading…
Reference in New Issue