Fix: lttng-snapshot: use after free of max size argument
[lttng-tools.git] / tests / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 SUBDIRS =
4
5 if BUILD_TESTS
6 SUBDIRS += . utils unit regression stress destructive perf
7 if HAVE_PGREP
8 check-am:
9 $(top_srcdir)/tests/utils/warn_processes.sh $(PGREP)
10 endif
11 else
12 @echo "========================================="
13 @echo "WARNING: Tests were disabled at configure"
14 @echo "========================================="
15 endif
16
17
18 dist_noinst_SCRIPTS = run.sh fast_regression long_regression root_regression root_destructive_tests perf_regression
19 EXTRA_DIST = run.sh fast_regression long_regression root_regression README root_destructive_tests perf_regression
20
21 all-local:
22 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
23 for script in $(EXTRA_DIST); do \
24 cp -f $(srcdir)/$$script $(builddir); \
25 done; \
26 fi
27
28 clean-local:
29 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
30 for script in $(EXTRA_DIST); do \
31 rm -f $(builddir)/$$script; \
32 done; \
33 fi
This page took 0.029646 seconds and 4 git commands to generate.