X-Git-Url: https://git.efficios.com/?a=blobdiff_plain;f=tests%2FMakefile.am;h=542b06c8ba428977bb3f3f5e4e4efd38aa6a4b68;hb=c0ba90e976d2b731c60b6faa8ae8de88f700b61a;hp=24c89fbeb9388c6bea9d48e257d1e389f1053d65;hpb=c77d62f1106b5d2e7699d55fc953edb81b7f1ed9;p=babeltrace.git diff --git a/tests/Makefile.am b/tests/Makefile.am index 24c89fbe..542b06c8 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,4 +1,11 @@ -SUBDIRS = utils lib bitfield ctf-writer plugins argpar +SUBDIRS = \ + utils \ + lib \ + bitfield \ + ctf-writer \ + plugins \ + argpar \ + param-validation # Directories added to EXTRA_DIST will be recursively copied to the distribution. EXTRA_DIST = $(srcdir)/data \ @@ -9,7 +16,6 @@ dist_check_SCRIPTS = \ bindings/python/bt2/test_component_class.py \ bindings/python/bt2/test_component.py \ bindings/python/bt2/test_connection.py \ - bindings/python/bt2/test_ctf_writer_clock.py \ bindings/python/bt2/test_event_class.py \ bindings/python/bt2/test_event.py \ bindings/python/bt2/test_field_class.py \ @@ -35,6 +41,7 @@ dist_check_SCRIPTS = \ cli/convert/test_auto_source_discovery_params \ cli/convert/test_auto_source_discovery_log_level \ cli/convert/test_convert_args \ + cli/test_help \ cli/test_intersection \ cli/test_output_ctf_metadata \ cli/test_output_path_ctf_non_lttng_trace \ @@ -42,6 +49,8 @@ dist_check_SCRIPTS = \ cli/test_trace_copy \ cli/test_trace_read \ cli/test_trimmer \ + plugins/sink.text.details/succeed/test_succeed \ + plugins/src.ctf.lttng-live/test_live \ python-plugin-provider/bt_plugin_test_python_plugin_provider.py \ python-plugin-provider/test_python_plugin_provider \ python-plugin-provider/test_python_plugin_provider.py @@ -57,6 +66,7 @@ TESTS_ARGPAR = \ TESTS_CLI = \ cli/convert/test_convert_args \ + cli/test_help \ cli/test_intersection \ cli/test_output_path_ctf_non_lttng_trace \ cli/test_packet_seq_num \ @@ -83,7 +93,8 @@ endif TESTS_PLUGINS = \ plugins/src.ctf.fs/succeed/test_succeed \ - plugins/sink.ctf.fs/succeed/test_succeed + plugins/sink.ctf.fs/succeed/test_succeed \ + plugins/sink.text.details/succeed/test_succeed if !ENABLE_BUILT_IN_PLUGINS if ENABLE_PYTHON_BINDINGS @@ -120,12 +131,19 @@ TESTS_PLUGINS += plugins/flt.utils.trimmer/test_trimming \ endif endif +if HAVE_PYTHON +TESTS_PLUGINS += plugins/src.ctf.lttng-live/test_live +endif + TESTS_PYTHON_PLUGIN_PROVIDER = if ENABLE_PYTHON_PLUGINS TESTS_PYTHON_PLUGIN_PROVIDER += python-plugin-provider/test_python_plugin_provider endif +TESTS_PARAM_VALIDATION = \ + param-validation/test_param_validation + LOG_DRIVER_FLAGS = --merge --comments LOG_DRIVER = env AM_TAP_AWK='$(AWK)' \ BT_TESTS_SRCDIR='$(abs_top_srcdir)/tests' \ @@ -143,6 +161,7 @@ TESTS_NO_BITFIELD = \ $(TESTS_CLI) \ $(TESTS_CTF_WRITER) \ $(TESTS_LIB) \ + $(TESTS_PARAM_VALIDATION) \ $(TESTS_PLUGINS) \ $(TESTS_PYTHON_PLUGIN_PROVIDER)