From: Michael Jeanson Date: Wed, 19 Jul 2017 20:14:59 +0000 (-0400) Subject: Tests: only run debug info tests when the feature is enabled X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=b016ac188a5d450c3f3aa2471c6d47eb7c5c1cbe Tests: only run debug info tests when the feature is enabled Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- diff --git a/tests/cli/Makefile.am b/tests/cli/Makefile.am index 17eb6c0f..d0da8a1b 100644 --- a/tests/cli/Makefile.am +++ b/tests/cli/Makefile.am @@ -9,9 +9,12 @@ TESTS = test_trace_read \ test_convert_args \ intersection/test_intersection \ test_trace_copy \ - test_debug_info \ test_trimmer +if ENABLE_DEBUG_INFO +TESTS += test_debug_info +endif + if ENABLE_PYTHON_BINDINGS TESTS += intersection/test_multi_trace_intersection.py endif