Tests: add unit tests for so_info
[babeltrace.git] / tests / lib / Makefile.am
CommitLineData
1833a3d1 1AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
aa968dde
YB
2
3noinst_LIBRARIES = libtestcommon.a
4
1833a3d1 5LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
aa968dde 6
1833a3d1
CB
7libtestcommon_a_SOURCES = common.c common.h
8
c0903f87
MD
9# -Wl,--no-as-needed is needed for recent gold linker who seems to think
10# it knows better and considers libraries with constructors having
11# side-effects as dead code.
f0d8d709 12test_seek_LDFLAGS = $(LD_NO_AS_NEEDED)
6b31ae9c 13test_seek_LDADD = $(LIBTAP) libtestcommon.a \
aa968dde
YB
14 $(top_builddir)/lib/libbabeltrace.la \
15 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
16
1833a3d1 17test_bitfield_LDADD = $(LIBTAP) libtestcommon.a
9e8e57d0 18
39d74371
JG
19test_ctf_writer_LDADD = $(LIBTAP) \
20 $(top_builddir)/lib/libbabeltrace.la \
21 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
22
dac5c838 23test_bt_values_LDADD = $(LIBTAP) \
4f29b187
PP
24 $(top_builddir)/lib/libbabeltrace.la
25
c9b3f44b
JG
26test_ctf_ir_ref_LDADD = $(LIBTAP) \
27 $(top_builddir)/lib/libbabeltrace.la \
28 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
29
0b93f4ea
PP
30test_bt_ctf_field_type_validation_LDADD = $(LIBTAP) \
31 $(top_builddir)/lib/libbabeltrace.la \
32 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
33
c9b3f44b 34noinst_PROGRAMS = test_seek test_bitfield test_ctf_writer test_bt_values \
0b93f4ea 35 test_ctf_ir_ref test_bt_ctf_field_type_validation
aa968dde 36
6b31ae9c
CB
37test_seek_SOURCES = test_seek.c
38test_bitfield_SOURCES = test_bitfield.c
39d74371 39test_ctf_writer_SOURCES = test_ctf_writer.c
dac5c838 40test_bt_values_SOURCES = test_bt_values.c
c9b3f44b 41test_ctf_ir_ref_SOURCES = test_ctf_ir_ref.c
0b93f4ea 42test_bt_ctf_field_type_validation_SOURCES = test_bt_ctf_field_type_validation.c
aa968dde 43
ea24dd7b
MD
44SCRIPT_LIST = test_seek_big_trace \
45 test_seek_empty_packet \
d3f6fcac 46 test_ctf_writer_complete
27f3cedc 47EXTRA_DIST = test_seek_big_trace.in test_seek_empty_packet.in
15553d19 48
33ba099b
AB
49if ENABLE_DEBUGINFO
50test_dwarf_LDFLAGS = -static
51test_dwarf_LDADD = $(LIBTAP) \
52 $(top_builddir)/lib/libbabeltrace.la \
53 $(top_builddir)/lib/libdebuginfo.la
54test_dwarf_SOURCES = test_dwarf.c
55
6ab5bdaa
AB
56test_so_info_LDFLAGS = -static
57test_so_info_LDADD = $(LIBTAP) \
58 $(top_builddir)/lib/libbabeltrace.la \
59 $(top_builddir)/lib/libdebuginfo.la
60test_so_info_SOURCES = test_so_info.c
61
62noinst_PROGRAMS += test_dwarf test_so_info
63SCRIPT_LIST += test_dwarf_complete test_so_info_complete
33ba099b
AB
64endif
65
15553d19
MD
66dist_noinst_SCRIPTS = $(SCRIPT_LIST)
67
68all-local:
69 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
70 for script in $(SCRIPT_LIST); do \
71 cp -f $(srcdir)/$$script $(builddir); \
72 done; \
73 fi
74
75clean-local:
76 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
77 for script in $(SCRIPT_LIST); do \
78 rm -f $(builddir)/$$script; \
79 done; \
80 fi
This page took 0.031957 seconds and 4 git commands to generate.