Drop installcheck target
[lttng-tools.git] / tests / Makefile.am
1 SUBDIRS =
2 DIST_SUBDIRS = utils regression unit stress destructive
3
4 if BUILD_TESTS
5 SUBDIRS += utils regression unit stress destructive
6 endif
7
8 check-am:
9 if BUILD_TESTS
10 if HAS_PGREP
11 ./utils/warn_lttng_processes.sh $(PGREP)
12 endif
13 ./run.sh unit_tests
14 ./run.sh fast_regression
15 if PYTHON_BINDING
16 ./run.sh with_bindings_regression
17 endif
18 else
19 @echo "========================================="
20 @echo "WARNING: Tests were disabled at configure"
21 @echo "========================================="
22 endif
23
24 dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression root_destructive_tests
25 EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression README root_destructive_tests
26
27 all-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
34 clean-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.032547 seconds and 6 git commands to generate.