Tests: fix tracefile count when page_size is > 4k
[lttng-tools.git] / tests / Makefile.am
CommitLineData
87fb9fc0
JR
1SUBDIRS =
2DIST_SUBDIRS = utils regression unit stress
3
4if BUILD_TESTS
5SUBDIRS += utils regression unit stress
6endif
0ea4ac57 7
9e86765b 8installcheck-am:
87fb9fc0 9if BUILD_TESTS
b67cd6f0
PP
10if HAS_PGREP
11 ./utils/warn_lttng_processes.sh $(PGREP)
12endif
eeeb0811
CB
13 ./run.sh unit_tests
14 ./run.sh fast_regression
9c444542 15if PYTHON_BINDING
bbb85c88 16 ./run.sh with_bindings_regression
9e86765b 17endif
87fb9fc0
JR
18else
19 @echo "========================================="
20 @echo "WARNING: Tests were disabled at configure"
21 @echo "========================================="
22endif
9e86765b 23
bbb85c88 24check-am:
87fb9fc0 25if BUILD_TESTS
b67cd6f0
PP
26if HAS_PGREP
27 ./utils/warn_lttng_processes.sh $(PGREP)
28endif
bbb85c88
JG
29 ./run.sh unit_tests
30 ./run.sh fast_regression
9c444542 31if PYTHON_BINDING
9e86765b 32 ./run.sh with_bindings_regression
bbb85c88 33endif
87fb9fc0
JR
34else
35 @echo "========================================="
36 @echo "WARNING: Tests were disabled at configure"
37 @echo "========================================="
38endif
431387b0
JG
39
40dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
94dab75b 41EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression README
c83e7ca0
DG
42
43all-local:
44 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
45 for script in $(EXTRA_DIST); do \
46 cp -f $(srcdir)/$$script $(builddir); \
47 done; \
48 fi
49
50clean-local:
51 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
52 for script in $(EXTRA_DIST); do \
53 rm -f $(builddir)/$$script; \
54 done; \
55 fi
This page took 0.028983 seconds and 4 git commands to generate.