From ef4b61496d51b7a8fc52524956bea4d122ef260c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?X=E2=84=B9=20Ruoyao?= Date: Wed, 9 Sep 2020 01:23:11 +0800 Subject: [PATCH] skip elements/leak.c if tracer is not available Part-of: --- tests/check/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/meson.build b/tests/check/meson.build index 372ea41805..a617cf1594 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -88,7 +88,7 @@ core_tests = [ [ 'elements/filesrc.c', not gst_registry ], [ 'elements/funnel.c', not gst_registry ], [ 'elements/identity.c', not gst_registry or not gst_parse ], - [ 'elements/leaks.c' ], + [ 'elements/leaks.c', not tracer_hooks or not gst_debug ], [ 'elements/multiqueue.c', not gst_registry ], [ 'elements/selector.c', not gst_registry ], [ 'elements/streamiddemux.c', not gst_registry ],