From 736efc2d9e74bcb5c9cb255937fa5d644da91658 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 5 Jul 2017 13:19:00 +0100 Subject: [PATCH] tests: memory: skip test that depends on debug system if it's disabled --- tests/check/gst/gstmemory.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/check/gst/gstmemory.c b/tests/check/gst/gstmemory.c index 7f430ae..9bd6c00 100644 --- a/tests/check/gst/gstmemory.c +++ b/tests/check/gst/gstmemory.c @@ -683,6 +683,7 @@ _custom_log_func (GstDebugCategory * category, fail_unless (dbg_msg == NULL); } +#ifndef GST_DISABLE_GST_DEBUG GST_START_TEST (test_no_error_and_no_warning_on_map_failure) { GstAllocator *alloc; @@ -735,6 +736,7 @@ GST_START_TEST (test_no_error_and_no_warning_on_map_failure) } GST_END_TEST; +#endif /* !GST_DISABLE_GST_DEBUG */ static Suite * gst_memory_suite (void) @@ -755,7 +757,9 @@ gst_memory_suite (void) tcase_add_test (tc_chain, test_map_resize); tcase_add_test (tc_chain, test_alloc_params); tcase_add_test (tc_chain, test_lock); +#ifndef GST_DISABLE_GST_DEBUG tcase_add_test (tc_chain, test_no_error_and_no_warning_on_map_failure); +#endif return s; } -- 2.7.4