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