Add unit tests for lttng_ust_strerror
[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
20 EXTRA_DIST = README
21
22 check-loop:
23 while [ 0 ]; do \
24 $(MAKE) $(AM_MAKEFLAGS) check; \
25 if [ "$$?" != "0" ]; then \
26 break; \
27 fi \
28 done
29
30 .PHONY: check-loop
This page took 0.031851 seconds and 5 git commands to generate.