Add original snapshot proposal to documentation
[lttng-tools.git] / tests / Makefile.am
... / ...
CommitLineData
1SUBDIRS = utils regression unit stress
2
3if USE_PYTHON
4check-am:
5 ./run.sh unit_tests
6 ./run.sh fast_regression
7 ./run.sh with_bindings_regression
8else
9check-am:
10 ./run.sh unit_tests
11 ./run.sh fast_regression
12endif
13
14dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
15EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
16
17all-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
24clean-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.023848 seconds and 5 git commands to generate.