Drop installcheck target
[lttng-tools.git] / tests / Makefile.am
... / ...
CommitLineData
1SUBDIRS =
2DIST_SUBDIRS = utils regression unit stress destructive
3
4if BUILD_TESTS
5SUBDIRS += utils regression unit stress destructive
6endif
7
8check-am:
9if BUILD_TESTS
10if HAS_PGREP
11 ./utils/warn_lttng_processes.sh $(PGREP)
12endif
13 ./run.sh unit_tests
14 ./run.sh fast_regression
15if PYTHON_BINDING
16 ./run.sh with_bindings_regression
17endif
18else
19 @echo "========================================="
20 @echo "WARNING: Tests were disabled at configure"
21 @echo "========================================="
22endif
23
24dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression root_destructive_tests
25EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression README root_destructive_tests
26
27all-local:
28 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
29 for script in $(EXTRA_DIST); do \
30 cp -f $(srcdir)/$$script $(builddir); \
31 done; \
32 fi
33
34clean-local:
35 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
36 for script in $(EXTRA_DIST); do \
37 rm -f $(builddir)/$$script; \
38 done; \
39 fi
This page took 0.024119 seconds and 4 git commands to generate.