Tests: fix health tests to use custom socket timeout
[lttng-tools.git] / tests / Makefile.am
1 SUBDIRS = utils regression unit stress
2
3 if USE_PYTHON
4 check-am:
5 ./run.sh unit_tests
6 ./run.sh fast_regression
7 ./run.sh with_bindings_regression
8 else
9 check-am:
10 ./run.sh unit_tests
11 ./run.sh fast_regression
12 endif
13
14 dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
15 EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
16
17 all-local:
18 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
19 for script in $(EXTRA_DIST); do \
20 cp -f $(srcdir)/$$script $(builddir); \
21 done; \
22 fi
23
24 clean-local:
25 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
26 for script in $(EXTRA_DIST); do \
27 rm -f $(builddir)/$$script; \
28 done; \
29 fi
This page took 0.029682 seconds and 4 git commands to generate.