diff options
-rw-r--r-- | Makefile.am | 7 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | tests/Makefile.am | 1 | ||||
-rw-r--r-- | tests/system/Makefile.am | 5 |
4 files changed, 16 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 9a28f200f0..e2203dba4d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = doc src +SUBDIRS = doc src tests USE_LCOV=@USE_LCOV@ LCOV=@LCOV@ GENHTML=@GENHTML@ @@ -77,6 +77,11 @@ cppcheck: --template '{file}:{line}: check_fail: {message} ({severity},{id})' \ src +# system tests +systest: + cd tests/system; \ + sh runall.sh + #### include external sources in the distributed tarball: EXTRA_DIST = ext/asio/README EXTRA_DIST += ext/asio/asio/local/stream_protocol.hpp diff --git a/configure.ac b/configure.ac index be93242cb0..56a57441f1 100644 --- a/configure.ac +++ b/configure.ac @@ -689,6 +689,8 @@ AC_CONFIG_FILES([Makefile src/lib/cache/tests/Makefile src/lib/server_common/Makefile src/lib/server_common/tests/Makefile + tests/Makefile + tests/system/Makefile ]) AC_OUTPUT([doc/version.ent src/bin/cfgmgr/b10-cfgmgr.py @@ -747,6 +749,8 @@ AC_OUTPUT([doc/version.ent src/lib/cc/tests/session_unittests_config.h src/lib/log/tests/run_time_init_test.sh tests/system/conf.sh + tests/system/glue/setup.sh + tests/system/glue/nsx1/b10-config.db ], [ chmod +x src/bin/cmdctl/run_b10-cmdctl.sh chmod +x src/bin/xfrin/run_b10-xfrin.sh diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000000..d4008c0dd0 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = system diff --git a/tests/system/Makefile.am b/tests/system/Makefile.am new file mode 100644 index 0000000000..44e09e080b --- /dev/null +++ b/tests/system/Makefile.am @@ -0,0 +1,5 @@ +systest: + sh runall.sh + +distclean-local: + sh cleanall.sh |