summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-12-31 01:24:50 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-12-31 01:25:50 +0000
commitcfe8ffdf6eed21acb5e477701df42f3b66847e43 (patch)
tree64dac5b3fcf4376798cfb15d8830c1560deca932
parent52bdb195b2a1b2c5a208a690060579888ba6b5c0 (diff)
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.
-rw-r--r--tests/icles/.gitignore2
-rw-r--r--tests/icles/Makefile.am12
2 files changed, 14 insertions, 0 deletions
diff --git a/tests/icles/.gitignore b/tests/icles/.gitignore
index 72ace7370..bd175b1a8 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 8fbdb9271..d7a3236b9 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