Commit | Line | Data |
---|---|---|
1b83271b | 1 | SUBDIRS = writer . |
4c3453a1 | 2 | |
1833a3d1 | 3 | AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils |
aa968dde | 4 | |
1833a3d1 | 5 | LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la |
aa968dde | 6 | |
d4ae42f7 JG |
7 | libtestcommon_la_SOURCES = common.c common.h |
8 | noinst_LTLIBRARIES = libtestcommon.la | |
1833a3d1 | 9 | |
c0903f87 MD |
10 | # -Wl,--no-as-needed is needed for recent gold linker who seems to think |
11 | # it knows better and considers libraries with constructors having | |
12 | # side-effects as dead code. | |
11756dd1 | 13 | COMMON_TEST_LDADD = $(LIBTAP) $(builddir)/libtestcommon.la \ |
dc3fffef | 14 | $(top_builddir)/lib/libbabeltrace.la |
9e8e57d0 | 15 | |
11756dd1 | 16 | test_bitfield_LDADD = $(LIBTAP) $(builddir)/libtestcommon.la |
d6b40dbc JG |
17 | |
18 | test_ctf_writer_LDADD = $(COMMON_TEST_LDADD) | |
39d74371 | 19 | |
1b83271b | 20 | test_bt_values_LDADD = $(COMMON_TEST_LDADD) |
4f29b187 | 21 | |
d6b40dbc | 22 | test_ctf_ir_ref_LDADD = $(COMMON_TEST_LDADD) |
c9b3f44b | 23 | |
d6b40dbc | 24 | test_bt_ctf_field_type_validation_LDADD = $(COMMON_TEST_LDADD) |
0b93f4ea | 25 | |
d6b40dbc | 26 | test_ir_visit_LDADD = $(COMMON_TEST_LDADD) |
07926183 | 27 | |
e7ba301a JG |
28 | test_bt_notification_heap_LDADD = $(COMMON_TEST_LDADD) |
29 | ||
fb9935cc PP |
30 | test_graph_topo_LDADD = $(COMMON_TEST_LDADD) |
31 | ||
0e4a4192 PP |
32 | test_cc_prio_map_LDADD = $(COMMON_TEST_LDADD) |
33 | ||
223c70b2 PP |
34 | test_bt_notification_iterator_LDADD = $(COMMON_TEST_LDADD) |
35 | ||
06534d45 | 36 | noinst_PROGRAMS = test_bitfield test_ctf_writer test_bt_values \ |
1323fbeb | 37 | test_ctf_ir_ref test_bt_ctf_field_type_validation test_ir_visit \ |
1b83271b | 38 | test_bt_notification_heap test_graph_topo \ |
223c70b2 | 39 | test_cc_prio_map test_bt_notification_iterator |
aa968dde | 40 | |
6b31ae9c | 41 | test_bitfield_SOURCES = test_bitfield.c |
39d74371 | 42 | test_ctf_writer_SOURCES = test_ctf_writer.c |
dac5c838 | 43 | test_bt_values_SOURCES = test_bt_values.c |
c9b3f44b | 44 | test_ctf_ir_ref_SOURCES = test_ctf_ir_ref.c |
0b93f4ea | 45 | test_bt_ctf_field_type_validation_SOURCES = test_bt_ctf_field_type_validation.c |
07926183 | 46 | test_ir_visit_SOURCES = test_ir_visit.c |
e7ba301a | 47 | test_bt_notification_heap_SOURCES = test_bt_notification_heap.c |
fb9935cc | 48 | test_graph_topo_SOURCES = test_graph_topo.c |
0e4a4192 | 49 | test_cc_prio_map_SOURCES = test_cc_prio_map.c |
223c70b2 | 50 | test_bt_notification_iterator_SOURCES = test_bt_notification_iterator.c |
aa968dde | 51 | |
1b83271b | 52 | check_SCRIPTS = test_ctf_writer_complete |
15553d19 | 53 | |
4f45f9bb JD |
54 | #FIXME |
55 | #if ENABLE_DEBUG_INFO | |
56 | #test_dwarf_LDFLAGS = -static | |
57 | #test_dwarf_LDADD = $(LIBTAP) \ | |
58 | # $(top_builddir)/lib/libbabeltrace.la \ | |
59 | # $(top_builddir)/lib/libdebug-info.la | |
60 | #test_dwarf_SOURCES = test_dwarf.c | |
61 | ||
62 | #test_bin_info_LDFLAGS = -static | |
63 | #test_bin_info_LDADD = $(LIBTAP) \ | |
64 | # $(top_builddir)/lib/libbabeltrace.la \ | |
65 | # $(top_builddir)/lib/libdebug-info.la | |
66 | #test_bin_info_SOURCES = test_bin_info.c | |
67 | ||
68 | #noinst_PROGRAMS += test_dwarf test_bin_info | |
69 | #check_SCRIPTS += test_dwarf_complete test_bin_info_complete | |
70 | #endif | |
6ca1931c PP |
71 | |
72 | LOG_DRIVER_FLAGS='--merge' | |
73 | LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/config/tap-driver.sh | |
74 | ||
75 | TESTS = test_bitfield \ | |
76 | test_ctf_writer_complete \ | |
77 | test_bt_values \ | |
78 | test_ctf_ir_ref \ | |
79 | test_bt_ctf_field_type_validation \ | |
80 | test_ir_visit \ | |
81 | test_bt_notification_heap \ | |
6ca1931c PP |
82 | test_graph_topo \ |
83 | test_cc_prio_map \ | |
84 | test_bt_notification_iterator | |
85 | ||
86 | if ENABLE_DEBUG_INFO | |
87 | TESTS += test_dwarf_complete \ | |
88 | test_bin_info_complete | |
89 | endif | |
90 | ||
91 | if USE_PYTHON | |
92 | TESTS += | |
93 | writer/test_ctf_writer_no_packet_context.py \ | |
94 | writer/test_ctf_writer_empty_packet.py | |
95 | endif | |
1b83271b PP |
96 | |
97 | if !BUILT_IN_PLUGINS | |
98 | noinst_PROGRAMS += test_plugin | |
99 | test_plugin_LDADD = $(COMMON_TEST_LDADD) | |
100 | test_plugin_SOURCES = test_plugin.c | |
101 | TESTS += test_plugin_complete | |
102 | check_SCRIPTS += test_plugin_complete | |
103 | SUBDIRS += test-plugin-plugins | |
104 | endif |