X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Flib%2FMakefile.am;h=c1b68d7ffeb2c978ee3496b0fce678b20da9a87a;hb=5d7e83594e8aa4f8b465165c05938116279f493d;hp=01831de3dfb86452bba6c3e39bf652750b37c56d;hpb=9e8e57d0b2a5043703e6f3624e1de3c665210a03;p=babeltrace.git diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am index 01831de3..c1b68d7f 100644 --- a/tests/lib/Makefile.am +++ b/tests/lib/Makefile.am @@ -1,21 +1,62 @@ -AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include - -noinst_LIBRARIES = libtestcommon.a - -libtestcommon_a_SOURCES = tap.c tap.h common.c common.h - -test_seeks_LDADD = libtestcommon.a \ - $(top_builddir)/lib/libbabeltrace.la \ - $(top_builddir)/formats/ctf/libbabeltrace-ctf.la - -test_bitfield_LDADD = libtestcommon.a - -noinst_PROGRAMS = test-seeks test-bitfield - -test_seeks_SOURCES = test-seeks.c -test_bitfield_SOURCES = test-bitfield.c - -EXTRA_DIST = README.tap runall.sh - -check-am: - ./runall.sh +# SPDX-License-Identifier: MIT + +SUBDIRS = + +AM_CPPFLAGS += -I$(top_srcdir)/tests/utils + +COMMON_TEST_LDADD = \ + $(top_builddir)/tests/utils/tap/libtap.la \ + $(top_builddir)/tests/utils/libtestcommon.la \ + $(top_builddir)/src/common/libbabeltrace2-common.la \ + $(top_builddir)/src/logging/libbabeltrace2-logging.la + +test_bt_values_LDADD = $(COMMON_TEST_LDADD) \ + $(top_builddir)/src/lib/libbabeltrace2.la + +test_bt_uuid_LDADD = $(COMMON_TEST_LDADD) + +test_trace_ir_ref_LDADD = $(COMMON_TEST_LDADD) \ + $(top_builddir)/src/lib/libbabeltrace2.la \ + $(top_builddir)/src/ctf-writer/libbabeltrace2-ctf-writer.la + +test_graph_topo_LDADD = $(COMMON_TEST_LDADD) \ + $(top_builddir)/src/lib/libbabeltrace2.la + +test_simple_sink_LDADD = $(COMMON_TEST_LDADD) \ + $(top_builddir)/src/lib/libbabeltrace2.la + +test_remove_destruction_listener_in_destruction_listener_LDADD = \ + $(COMMON_TEST_LDADD) \ + $(top_builddir)/src/lib/libbabeltrace2.la + +noinst_PROGRAMS = \ + test_bt_uuid \ + test_bt_values \ + test_graph_topo \ + test_remove_destruction_listener_in_destruction_listener \ + test_simple_sink \ + test_trace_ir_ref + +test_bt_values_SOURCES = test_bt_values.c +test_simple_sink_SOURCES = test_simple_sink.c +test_bt_uuid_SOURCES = test_bt_uuid.c +test_trace_ir_ref_SOURCES = test_trace_ir_ref.c +test_graph_topo_SOURCES = test_graph_topo.c +test_remove_destruction_listener_in_destruction_listener_SOURCES = \ + test_remove_destruction_listener_in_destruction_listener.c + +if !ENABLE_BUILT_IN_PLUGINS +noinst_PROGRAMS += plugin +plugin_LDADD = $(COMMON_TEST_LDADD) \ + $(top_builddir)/src/lib/libbabeltrace2.la +plugin_SOURCES = plugin.c +SUBDIRS += test-plugin-plugins +endif + +dist_check_SCRIPTS = test_plugin + +if HAVE_PYTHON +if DEV_MODE +SUBDIRS += conds +endif +endif