Add internal command-line argument parser API
[babeltrace.git] / tests / Makefile.am
1 SUBDIRS = utils lib bitfield ctf-writer plugins argpar
2
3 # Directories added to EXTRA_DIST will be recursively copied to the distribution.
4 EXTRA_DIST = $(srcdir)/data \
5 bindings/python/bt2/.coveragerc
6
7 dist_check_SCRIPTS = \
8 bindings/python/bt2/test_clock_class.py \
9 bindings/python/bt2/test_component_class.py \
10 bindings/python/bt2/test_component.py \
11 bindings/python/bt2/test_connection.py \
12 bindings/python/bt2/test_ctf_writer_clock.py \
13 bindings/python/bt2/test_event_class.py \
14 bindings/python/bt2/test_event.py \
15 bindings/python/bt2/test_field_class.py \
16 bindings/python/bt2/test_field.py \
17 bindings/python/bt2/test_graph.py \
18 bindings/python/bt2/test_integer_range_set.py \
19 bindings/python/bt2/test_interrupter.py \
20 bindings/python/bt2/test_message_iterator.py \
21 bindings/python/bt2/test_message.py \
22 bindings/python/bt2/test_package.py \
23 bindings/python/bt2/test_packet.py \
24 bindings/python/bt2/test_plugin.py \
25 bindings/python/bt2/test_port.py \
26 bindings/python/bt2/test_python_bt2 \
27 bindings/python/bt2/test_query_executor.py \
28 bindings/python/bt2/test_stream_class.py \
29 bindings/python/bt2/test_stream.py \
30 bindings/python/bt2/test_trace_collection_message_iterator.py \
31 bindings/python/bt2/test_trace.py \
32 bindings/python/bt2/test_value.py \
33 bindings/python/bt2/utils.py \
34 cli/auto-source-discovery/test_auto_source_discovery \
35 cli/test_convert_args \
36 cli/test_intersection \
37 cli/test_output_ctf_metadata \
38 cli/test_packet_seq_num \
39 cli/test_trace_copy \
40 cli/test_trace_read \
41 cli/test_trimmer \
42 python-plugin-provider/bt_plugin_test_python_plugin_provider.py \
43 python-plugin-provider/test_python_plugin_provider \
44 python-plugin-provider/test_python_plugin_provider.py
45
46 TESTS_BINDINGS =
47
48 if ENABLE_PYTHON_BINDINGS
49 TESTS_BINDINGS += bindings/python/bt2/test_python_bt2
50 endif
51
52 TESTS_ARGPAR = \
53 argpar/test_argpar
54
55 TESTS_CLI = \
56 cli/test_trace_read \
57 cli/test_packet_seq_num \
58 cli/test_convert_args \
59 cli/test_intersection \
60 cli/test_trace_copy \
61 cli/test_trimmer
62
63 TESTS_LIB = \
64 lib/test_bt_values \
65 lib/test_bt_uuid \
66 lib/test_graph_topo \
67 lib/test_trace_ir_ref
68
69 TESTS_BITFIELD = \
70 bitfield/test_bitfield
71
72 TESTS_CTF_WRITER = \
73 ctf-writer/test_ctf_writer
74
75 if !ENABLE_BUILT_IN_PLUGINS
76 TESTS_LIB += lib/test_plugin
77 endif
78
79 TESTS_PLUGINS = \
80 plugins/src.ctf.fs/succeed/test_succeed \
81 plugins/sink.ctf.fs/succeed/test_succeed
82
83 if !ENABLE_BUILT_IN_PLUGINS
84 if ENABLE_PYTHON_BINDINGS
85 TESTS_PLUGINS += plugins/src.ctf.fs/query/test_query
86 endif
87
88 if ENABLE_DEBUG_INFO
89 TESTS_PLUGINS += \
90 plugins/flt.lttng-utils.debug-info/test_succeed
91 endif
92 endif
93
94 if ENABLE_DEBUG_INFO
95 TESTS_PLUGINS += \
96 plugins/flt.lttng-utils.debug-info/test_dwarf_i386-linux-gnu \
97 plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc-linux-gnu \
98 plugins/flt.lttng-utils.debug-info/test_dwarf_powerpc64le-linux-gnu \
99 plugins/flt.lttng-utils.debug-info/test_dwarf_x86_64-linux-gnu \
100 plugins/flt.lttng-utils.debug-info/test_bin_info_i386-linux-gnu \
101 plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc-linux-gnu \
102 plugins/flt.lttng-utils.debug-info/test_bin_info_powerpc64le-linux-gnu \
103 plugins/flt.lttng-utils.debug-info/test_bin_info_x86_64-linux-gnu
104 endif
105
106 if ENABLE_PYTHON_PLUGINS
107 if ENABLE_PYTHON_BINDINGS
108 TESTS_CLI += cli/auto-source-discovery/test_auto_source_discovery
109 TESTS_PLUGINS += plugins/flt.utils.trimmer/test_trimming
110 endif
111 endif
112
113 TESTS_PYTHON_PLUGIN_PROVIDER =
114
115 if ENABLE_PYTHON_PLUGINS
116 TESTS_PYTHON_PLUGIN_PROVIDER += python-plugin-provider/test_python_plugin_provider
117 endif
118
119 LOG_DRIVER_FLAGS = --merge --comments
120 LOG_DRIVER = env AM_TAP_AWK='$(AWK)' \
121 BT_TESTS_SRCDIR='$(abs_top_srcdir)/tests' \
122 BT_TESTS_BUILDDIR='$(abs_top_builddir)/tests' \
123 BT_TESTS_AWK_BIN="$(AWK)" \
124 BT_TESTS_GREP_BIN="$(GREP)" \
125 BT_TESTS_PYTHON_BIN="$(PYTHON)" \
126 BT_TESTS_PYTHON_CONFIG_BIN="$(PYTHON_CONFIG)" \
127 BT_TESTS_SED_BIN="$(SED)" \
128 $(SHELL) $(srcdir)/utils/tap-driver.sh
129
130 TESTS_NO_BITFIELD = \
131 $(TESTS_ARGPAR) \
132 $(TESTS_BINDINGS) \
133 $(TESTS_CLI) \
134 $(TESTS_CTF_WRITER) \
135 $(TESTS_LIB) \
136 $(TESTS_PLUGINS) \
137 $(TESTS_PYTHON_PLUGIN_PROVIDER)
138
139 TESTS = $(TESTS_NO_BITFIELD) $(TESTS_BITFIELD)
140
141 define check_target
142 check-$(1):
143 $(MAKE) $(AM_MAKEFLAGS) TESTS="$2" check
144 endef
145
146 $(eval $(call check_target,argpar,$(TESTS_ARGPAR)))
147 $(eval $(call check_target,bindings,$(TESTS_BINDINGS)))
148 $(eval $(call check_target,bitfield,$(TESTS_BITFIELD)))
149 $(eval $(call check_target,cli,$(TESTS_CLI)))
150 $(eval $(call check_target,ctf-writer,$(TESTS_CTF_WRITER)))
151 $(eval $(call check_target,lib,$(TESTS_LIB)))
152 $(eval $(call check_target,plugins,$(TESTS_PLUGINS)))
153 $(eval $(call check_target,python-plugin-provider,$(TESTS_PYTHON_PLUGIN_PROVIDER)))
154
155 check-no-bitfield:
156 $(MAKE) $(AM_MAKEFLAGS) TESTS="$(TESTS_NO_BITFIELD)" check
This page took 0.032691 seconds and 4 git commands to generate.