From 11756dd19b638c233d0042857c257b7aa028c286 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 25 Oct 2016 17:19:40 -0400 Subject: [PATCH] Add test_ir_visit and test_trace_listener to the test list MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- tests/Makefile.am | 4 +++- tests/lib/Makefile.am | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index eda9f235..54847f3e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -15,7 +15,9 @@ TESTS = bin/test_trace_read \ lib/test_ctf_writer_complete \ lib/test_bt_values \ lib/test_ctf_ir_ref \ - lib/test_bt_ctf_field_type_validation + lib/test_bt_ctf_field_type_validation \ + lib/test_ir_visit \ + lib/test_trace_listener EXTRA_DIST = $(srcdir)/ctf-traces/** \ $(srcdir)/debug-info-data/** \ diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am index d240cbc0..cbbc5dc4 100644 --- a/tests/lib/Makefile.am +++ b/tests/lib/Makefile.am @@ -9,13 +9,13 @@ noinst_LTLIBRARIES = libtestcommon.la # it knows better and considers libraries with constructors having # side-effects as dead code. test_seek_LDFLAGS = $(LD_NO_AS_NEEDED) -COMMON_TEST_LDADD = $(LIBTAP) libtestcommon.a \ +COMMON_TEST_LDADD = $(LIBTAP) $(builddir)/libtestcommon.la \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la test_seek_LDADD = $(COMMON_TEST_LDADD) -test_bitfield_LDADD = $(LIBTAP) libtestcommon.a +test_bitfield_LDADD = $(LIBTAP) $(builddir)/libtestcommon.la test_ctf_writer_LDADD = $(COMMON_TEST_LDADD) -- 2.34.1