X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2FMakefile.am;h=017163f51d24573a46ab7b12a19ed090fd825b2e;hp=29b8ba4f925d8d519dcff407e9f2acd33b521fa1;hb=512eb1488340c4c3c0c29e6cde9d489e858fdd6c;hpb=897b8e238be8ce71c0d484c31155fc8390cda6f0 diff --git a/tests/Makefile.am b/tests/Makefile.am index 29b8ba4f9..017163f51 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,14 +1,55 @@ -AM_CFLAGS=-I$(top_srcdir)/include -I$(top_srcdir)/libkernelctl \ - -I$(top_srcdir)/liblttngctl -g -Wall +SUBDIRS = +DIST_SUBDIRS = utils regression unit stress destructive -noinst_PROGRAMS = test_sessions test_kernel_data_trace +if BUILD_TESTS +SUBDIRS += utils regression unit stress destructive +endif -SESSIONS=$(top_srcdir)/ltt-sessiond/session.c -KERN_DATA_TRACE=$(top_srcdir)/ltt-sessiond/trace.c +installcheck-am: +if BUILD_TESTS +if HAS_PGREP + ./utils/warn_lttng_processes.sh $(PGREP) +endif + ./run.sh unit_tests + ./run.sh fast_regression +if PYTHON_BINDING + ./run.sh with_bindings_regression +endif +else + @echo "=========================================" + @echo "WARNING: Tests were disabled at configure" + @echo "=========================================" +endif -test_sessions_SOURCES = test_sessions.c $(SESSIONS) +check-am: +if BUILD_TESTS +if HAS_PGREP + ./utils/warn_lttng_processes.sh $(PGREP) +endif + ./run.sh unit_tests + ./run.sh fast_regression +if PYTHON_BINDING + ./run.sh with_bindings_regression +endif +else + @echo "=========================================" + @echo "WARNING: Tests were disabled at configure" + @echo "=========================================" +endif -test_kernel_data_trace_SOURCES = test_kernel_data_trace.c $(KERN_DATA_TRACE) +dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression root_destructive_tests +EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression README root_destructive_tests -check-am: - ./runall.sh +all-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + cp -f $(srcdir)/$$script $(builddir); \ + done; \ + fi + +clean-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + rm -f $(builddir)/$$script; \ + done; \ + fi