b2c1c2b51e4cc96105a6b59c5b598640512caee6
[lttng-ust.git] / tests / Makefile.am
1 # SPDX-License-Identifier: LGPL-2.1-only
2
3 SUBDIRS = utils unit compile benchmark
4
5 LOG_DRIVER_FLAGS = --merge --comments
6 LOG_DRIVER = env AM_TAP_AWK='$(AWK)' \
7 UST_TESTS_SRCDIR='$(abs_top_srcdir)/tests' \
8 UST_TESTS_BUILDDIR='$(abs_top_builddir)/tests' \
9 $(SHELL) $(srcdir)/utils/tap-driver.sh
10
11 TESTS = \
12 unit/libringbuffer/test_shm \
13 unit/gcc-weak-hidden/test_gcc_weak_hidden \
14 unit/libmsgpack/test_msgpack \
15 unit/pthread_name/test_pthread_name \
16 unit/snprintf/test_snprintf \
17 unit/ust-elf/test_ust_elf \
18 unit/ust-error/test_ust_error \
19 unit/ust-utils/test_ust_utils
20
21 if HAVE_CXX
22 TESTS += \
23 unit/ust-utils/test_ust_utils_cxx
24 endif
25
26 EXTRA_DIST = README
27
28 check-loop:
29 while [ 0 ]; do \
30 $(MAKE) $(AM_MAKEFLAGS) check; \
31 if [ "$$?" != "0" ]; then \
32 break; \
33 fi \
34 done
35
36 .PHONY: check-loop
This page took 0.030107 seconds and 3 git commands to generate.