From cfe8ffdf6eed21acb5e477701df42f3b66847e43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 31 Dec 2010 01:24:50 +0000 Subject: [PATCH] tests: add input-selector-test and output-selector-test Moved from gst-plugins-bad into -base, becasue it uses videotestsrc and other elements from -base, so it can't be in core. --- tests/icles/.gitignore | 2 ++ tests/icles/Makefile.am | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/tests/icles/.gitignore b/tests/icles/.gitignore index 72ace7370c..bd175b1a8b 100644 --- a/tests/icles/.gitignore +++ b/tests/icles/.gitignore @@ -1,4 +1,6 @@ audio-trickplay +input-selector-test +output-selector-test playbin-text position-formats stress-playbin diff --git a/tests/icles/Makefile.am b/tests/icles/Makefile.am index 8fbdb92713..d7a3236b90 100644 --- a/tests/icles/Makefile.am +++ b/tests/icles/Makefile.am @@ -26,6 +26,18 @@ test_xoverlay_LDADD = $(GST_LIBS) $(X_LIBS) $(LIBM) $(GTK_LIBS) \ $(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la endif +output_selector_test_SOURCES = output-selector-test.c +output_selector_test_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) +output_selector_test_LDADD = $(GST_LIBS) +output_selector_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +input_selector_test_SOURCES = input-selector-test.c +input_selector_test_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) +input_selector_test_LDADD = $(GST_LIBS) +input_selector_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +X_TESTS += output-selector-test input-selector-test + else X_TESTS = endif