tests: Move ctf-writer to it's own directory
[babeltrace.git] / tests / Makefile.am
CommitLineData
331731aa 1SUBDIRS = utils lib ctf-writer plugins
ac65e355 2
6a284733
MJ
3# Directories added to EXTRA_DIST will be recursively copied to the distribution.
4EXTRA_DIST = $(srcdir)/ctf-traces \
7bb90dd0
MJ
5 $(srcdir)/debug-info-data \
6 bindings/python/bt2/.coveragerc
1b83271b 7
7bb90dd0 8dist_check_SCRIPTS = \
7bb90dd0
MJ
9 bindings/python/bt2/test_clock_class_priority_map.py \
10 bindings/python/bt2/test_clock_class.py \
11 bindings/python/bt2/test_component_class.py \
12 bindings/python/bt2/test_component.py \
13 bindings/python/bt2/test_connection.py \
14 bindings/python/bt2/test_ctf_writer_clock.py \
15 bindings/python/bt2/test_event_class.py \
16 bindings/python/bt2/test_event.py \
17 bindings/python/bt2/test_field_class.py \
18 bindings/python/bt2/test_field.py \
19 bindings/python/bt2/test_graph.py \
20 bindings/python/bt2/test_message_iterator.py \
21 bindings/python/bt2/test_message.py \
22 bindings/python/bt2/test_packet.py \
23 bindings/python/bt2/test_plugin.py \
24 bindings/python/bt2/test_port.py \
25 bindings/python/bt2/test_query_executor.py \
26 bindings/python/bt2/test_stream_class.py \
27 bindings/python/bt2/test_stream.py \
28 bindings/python/bt2/test_trace_collection_message_iterator.py \
29 bindings/python/bt2/test_trace.py \
30 bindings/python/bt2/test_value.py \
31 bindings/python/bt2/utils.py \
32 python-plugin-provider/bt_plugin_test_python_plugin_provider.py \
33 python-plugin-provider/test_python_plugin_provider.py
cd1c5347 34
7bb90dd0 35TESTS_BINDINGS =
9e607e7c
JG
36
37if ENABLE_PYTHON_BINDINGS
b04a139e 38TESTS_BINDINGS += bindings/python/bt2/test_python_bt2
cd1c5347
PP
39endif
40
41TESTS_CLI = \
42 cli/test_trace_read \
43 cli/test_packet_seq_num \
44 cli/test_convert_args \
7bb90dd0 45 cli/test_intersection \
cd1c5347
PP
46 cli/test_trace_copy \
47 cli/test_trimmer
48
49TESTS_LIB = \
4041a53e 50 lib/test_bitfield \
cd1c5347 51 lib/test_bt_values \
4041a53e
SM
52 lib/test_graph_topo \
53 lib/test_trace_ir_ref
cd1c5347 54
331731aa
MJ
55TESTS_CTF_WRITER = \
56 ctf-writer/test_ctf_writer
57
cd1c5347
PP
58if !ENABLE_BUILT_IN_PLUGINS
59TESTS_LIB += lib/test_plugin_complete
4965530a 60endif
cd1c5347 61
1805e0b4 62if ENABLE_PYTHON_BINDINGS
56e18c4c 63TESTS_LIB += lib/trace-ir/test_trace_ir
1805e0b4
PP
64endif
65
cd1c5347
PP
66TESTS_PLUGINS =
67
68if !ENABLE_BUILT_IN_PLUGINS
d8992d68 69if ENABLE_PYTHON_BINDINGS
684658b1
PP
70TESTS_PLUGINS += plugins/ctf/test_ctf_plugin
71
72if ENABLE_DEBUG_INFO
d8992d68
PP
73TESTS_PLUGINS += plugins/test_lttng_utils_debug_info
74endif
75endif
cd1c5347
PP
76endif
77
78if ENABLE_DEBUG_INFO
79TESTS_PLUGINS += \
48c91dde 80 plugins/test_dwarf_i386-linux-gnu \
5d30f567 81 plugins/test_dwarf_powerpc-linux-gnu \
6d224992 82 plugins/test_dwarf_powerpc64le-linux-gnu \
6a284733 83 plugins/test_dwarf_x86_64-linux-gnu \
48c91dde 84 plugins/test_bin_info_i386-linux-gnu \
5d30f567 85 plugins/test_bin_info_powerpc-linux-gnu \
6d224992 86 plugins/test_bin_info_powerpc64le-linux-gnu \
6a284733 87 plugins/test_bin_info_x86_64-linux-gnu
cd1c5347
PP
88endif
89
90TESTS_PYTHON_PLUGIN_PROVIDER =
91
9e607e7c 92if ENABLE_PYTHON_PLUGINS
cd1c5347
PP
93TESTS_PYTHON_PLUGIN_PROVIDER += python-plugin-provider/test_python_plugin_provider
94endif
95
11d328de
PP
96LOG_DRIVER_FLAGS = '--merge'
97LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/config/tap-driver.sh
98
331731aa 99TESTS = $(TESTS_BINDINGS) $(TESTS_CLI) $(TESTS_CTF_WRITER) $(TESTS_LIB) \
1805e0b4 100 $(TESTS_PLUGINS) $(TESTS_PYTHON_PLUGIN_PROVIDER)
cd1c5347
PP
101
102define check_target
103check-$(1):
104 $(MAKE) $(AM_MAKEFLAGS) TESTS="$2" check
105endef
106
107$(eval $(call check_target,bindings,$(TESTS_BINDINGS)))
108$(eval $(call check_target,cli,$(TESTS_CLI)))
331731aa 109$(eval $(call check_target,ctf-writer,$(TESTS_CTF_WRITER)))
cd1c5347
PP
110$(eval $(call check_target,lib,$(TESTS_LIB)))
111$(eval $(call check_target,plugins,$(TESTS_PLUGINS)))
112$(eval $(call check_target,python-plugin-provider,$(TESTS_PYTHON_PLUGIN_PROVIDER)))
This page took 0.056457 seconds and 4 git commands to generate.