X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Fregression%2Fust%2FMakefile.am;h=49a1811ff08d79f262b4fca4b2ae781ce1924222;hb=c922647daed3dd022be11980063b5fb816d8c091;hp=28256c692d6c7a6df3eeb892f97a3f93b0f8bc0f;hpb=32414a0fddfe7c098cc4fd0e7d5424ab160ce8d1;p=lttng-tools.git diff --git a/tests/regression/ust/Makefile.am b/tests/regression/ust/Makefile.am index 28256c692..49a1811ff 100644 --- a/tests/regression/ust/Makefile.am +++ b/tests/regression/ust/Makefile.am @@ -1,7 +1,53 @@ +# SPDX-License-Identifier: GPL-2.0-only + if HAVE_LIBLTTNG_UST_CTL -SUBDIRS = nprocesses high-throughput low-throughput before-after multi-session \ - overlap +SUBDIRS = \ + before-after \ + blocking \ + buffers-pid \ + clock-override \ + daemon \ + exit-fast \ + fork \ + getcpu-override \ + high-throughput \ + java-jul \ + java-log4j \ + 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