X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Funit%2FMakefile.am;h=74027aba33a220b8fa56a52c6c802ddeeda76d45;hp=000687a07518651a081feb9b2d29904266b4e7e2;hb=c0a66c84b5b2484b75798aec7543b680b4d4ab6c;hpb=4e6581a7740c292be662d108a21a80e478b42a71 diff --git a/tests/unit/Makefile.am b/tests/unit/Makefile.am index 000687a07..74027aba3 100644 --- a/tests/unit/Makefile.am +++ b/tests/unit/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + SUBDIRS = ini_config AM_CPPFLAGS += -I$(top_srcdir)/tests/utils/ -I$(srcdir) @@ -19,7 +21,9 @@ TESTS = test_kernel_data \ test_relayd_backward_compat_group_by_session \ ini_config/test_ini_config \ test_fd_tracker \ - test_uuid + test_uuid \ + test_buffer_view \ + test_payload LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la @@ -37,7 +41,9 @@ noinst_PROGRAMS = test_uri test_session test_kernel_data \ test_utils_expand_path test_utils_compat_poll \ test_string_utils test_notification test_directory_handle \ test_relayd_backward_compat_group_by_session \ - test_fd_tracker test_uuid + test_fd_tracker test_uuid \ + test_buffer_view \ + test_payload if HAVE_LIBLTTNG_UST_CTL noinst_PROGRAMS += test_ust_data @@ -193,3 +199,11 @@ test_fd_tracker_LDADD = $(LIBTAP) $(LIBFDTRACKER) $(DL_LIBS) -lurcu $(LIBCOMMON) # uuid unit test test_uuid_SOURCES = test_uuid.c test_uuid_LDADD = $(LIBTAP) $(LIBCOMMON) + +# buffer view unit test +test_buffer_view_SOURCES = test_buffer_view.c +test_buffer_view_LDADD = $(LIBTAP) $(LIBCOMMON) + +# payload unit test +test_payload_SOURCES = test_payload.c +test_payload_LDADD = $(LIBTAP) $(LIBSESSIOND_COMM) $(LIBCOMMON)