X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=tests%2Flib%2FMakefile.am;h=1f3f5c9e6d1e77b57b6e8d8d48d972a97cfaf765;hp=e846680a4eedd6a305c2dde4722e43cc5a54cff2;hb=84be346be700f903998c0f1ec0130bdc9291761c;hpb=aa968dde60d1c3cff4dcebcca4b6f5c2b9737829 diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am index e846680a..1f3f5c9e 100644 --- a/tests/lib/Makefile.am +++ b/tests/lib/Makefile.am @@ -1,16 +1,65 @@ -AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include +AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils noinst_LIBRARIES = libtestcommon.a -libtestcommon_a_SOURCES = tap.c common.c +LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la -test_seeks_LDADD = libtestcommon.a \ +libtestcommon_a_SOURCES = common.c common.h + +# -Wl,--no-as-needed is needed for recent gold linker who seems to think +# it knows better and considers libraries with constructors having +# side-effects as dead code. +test_seek_LDFLAGS = $(LD_NO_AS_NEEDED) +test_seek_LDADD = $(LIBTAP) libtestcommon.a \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la -noinst_PROGRAMS = test-seeks +test_bitfield_LDADD = $(LIBTAP) libtestcommon.a + +test_ctf_writer_LDADD = $(LIBTAP) \ + $(top_builddir)/lib/libbabeltrace.la \ + $(top_builddir)/formats/ctf/libbabeltrace-ctf.la + +noinst_PROGRAMS = test_seek test_bitfield test_ctf_writer + +test_seek_SOURCES = test_seek.c +test_bitfield_SOURCES = test_bitfield.c +test_ctf_writer_SOURCES = test_ctf_writer.c + +SCRIPT_LIST = test_seek_big_trace \ + test_seek_empty_packet \ + test_ctf_writer_complete +EXTRA_DIST = test_seek_big_trace.in test_seek_empty_packet.in + +if ENABLE_DEBUGINFO +test_dwarf_LDFLAGS = -static +test_dwarf_LDADD = $(LIBTAP) \ + $(top_builddir)/lib/libbabeltrace.la \ + $(top_builddir)/lib/libdebuginfo.la +test_dwarf_SOURCES = test_dwarf.c + +test_so_info_LDFLAGS = -static +test_so_info_LDADD = $(LIBTAP) \ + $(top_builddir)/lib/libbabeltrace.la \ + $(top_builddir)/lib/libdebuginfo.la +test_so_info_SOURCES = test_so_info.c + +noinst_PROGRAMS += test_dwarf test_so_info +SCRIPT_LIST += test_dwarf_complete test_so_info_complete +endif + +dist_noinst_SCRIPTS = $(SCRIPT_LIST) -test_seeks_SOURCES = test-seeks.c +all-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(SCRIPT_LIST); do \ + cp -f $(srcdir)/$$script $(builddir); \ + done; \ + fi -check-am: - ./runall.sh +clean-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(SCRIPT_LIST); do \ + rm -f $(builddir)/$$script; \ + done; \ + fi