X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2FMakefile.am;h=d750ae391ac7309034ae631fa5391100b11b0375;hb=dbbb73968ec9af48c2b0b9ea65a4b03843109f7d;hp=3d7ceeb9d9cb874f1f8215a4f355c9af16b9dcf3;hpb=22609c7a82c5c8ebc07c19cade9b4d6ff61bd0d0;p=lttng-ust.git diff --git a/tests/Makefile.am b/tests/Makefile.am index 3d7ceeb9..d750ae39 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,26 +1,43 @@ -SUBDIRS = utils hello same_line_tracepoint snprintf benchmark ust-elf +# SPDX-License-Identifier: LGPL-2.1-only -if CXX_WORKS -SUBDIRS += hello.cxx +SUBDIRS = utils unit compile benchmark regression + +LOG_DRIVER_FLAGS = --merge --comments +LOG_DRIVER = env AM_TAP_AWK='$(AWK)' \ + UST_TESTS_SRCDIR='$(abs_top_srcdir)/tests' \ + UST_TESTS_BUILDDIR='$(abs_top_builddir)/tests' \ + $(SHELL) $(srcdir)/utils/tap-driver.sh + +# Unit tests + +TESTS = \ + unit/libringbuffer/test_shm \ + unit/gcc-weak-hidden/test_gcc_weak_hidden \ + unit/libmsgpack/test_msgpack \ + unit/pthread_name/test_pthread_name \ + unit/snprintf/test_snprintf \ + unit/ust-elf/test_ust_elf \ + unit/ust-error/test_ust_error \ + unit/ust-utils/test_ust_utils + +if HAVE_CXX +TESTS += \ + unit/ust-utils/test_ust_utils_cxx endif -SCRIPT_LIST = test_loop run.sh unit_tests +# Regression tests -dist_noinst_SCRIPTS = $(SCRIPT_LIST) +TESTS += \ + regression/abi0-conflict/test_abi0_conflict -all-local: - @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ - for script in $(SCRIPT_LIST); do \ - cp -f $(srcdir)/$$script $(builddir); \ - done; \ - fi +EXTRA_DIST = README -clean-local: - @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ - for script in $(SCRIPT_LIST); do \ - rm -f $(builddir)/$$script; \ - done; \ - fi +check-loop: + while [ 0 ]; do \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + if [ "$$?" != "0" ]; then \ + break; \ + fi \ + done -check-am: - ./run.sh unit_tests +.PHONY: check-loop