X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Fregression%2Fust%2FMakefile.am;h=5af414966d80fc5cf07583f95c43519e74a1f568;hb=cc22de985fbd6c192a021063fc3be165dd6fa5c0;hp=78a5aab625e480a19b93ace93606ea77d6aa32cf;hpb=adccfb8d2462cc34c1dca575754070b00e4b1b8f;p=lttng-tools.git diff --git a/tests/regression/ust/Makefile.am b/tests/regression/ust/Makefile.am index 78a5aab62..5af414966 100644 --- a/tests/regression/ust/Makefile.am +++ b/tests/regression/ust/Makefile.am @@ -1,7 +1,54 @@ +# SPDX-License-Identifier: GPL-2.0-only + if HAVE_LIBLTTNG_UST_CTL -SUBDIRS = nprocesses high-throughput low-throughput before-after multi-session \ - overlap buffers-uid +SUBDIRS = \ + before-after \ + blocking \ + buffers-pid \ + clock-override \ + daemon \ + exit-fast \ + fork \ + getcpu-override \ + high-throughput \ + java-jul \ + java-log4j \ + java-log4j2 \ + libc-wrapper \ + linking \ + low-throughput \ + multi-lib \ + multi-session \ + namespaces \ + nprocesses \ + overlap \ + periodical-metadata-flush \ + rotation-destroy-flush \ + type-declarations + +if HAVE_OBJCOPY +SUBDIRS += \ + baddr-statedump \ + ust-dl +endif + +EXTRA_DIST = \ + test_event_basic \ + test_event_perf \ + test_event_tracef + +all-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + cp -f $(srcdir)/$$script $(builddir); \ + done; \ + fi -EXTRA_DIST = test_event_basic test_event_wildcard +clean-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + rm -f $(builddir)/$$script; \ + done; \ + fi endif