X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Flib%2FMakefile.am;h=c1b68d7ffeb2c978ee3496b0fce678b20da9a87a;hb=5d7e83594e8aa4f8b465165c05938116279f493d;hp=593999c8aeb2967316c612f5fdc6412adcf51469;hpb=d31480098fc794d7de1135a649c4a05b0b7fa07e;p=babeltrace.git diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am index 593999c8..c1b68d7f 100644 --- a/tests/lib/Makefile.am +++ b/tests/lib/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: MIT + SUBDIRS = AM_CPPFLAGS += -I$(top_srcdir)/tests/utils @@ -23,18 +25,25 @@ test_graph_topo_LDADD = $(COMMON_TEST_LDADD) \ 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_values \ test_bt_uuid \ - test_trace_ir_ref \ + test_bt_values \ test_graph_topo \ - test_simple_sink + 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 @@ -45,3 +54,9 @@ SUBDIRS += test-plugin-plugins endif dist_check_SCRIPTS = test_plugin + +if HAVE_PYTHON +if DEV_MODE +SUBDIRS += conds +endif +endif