From: Thomas Vander Stichele Date: Wed, 30 Nov 2005 16:39:04 +0000 (+0000) Subject: descend into tests X-Git-Tag: RELEASE-0_9_7~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c93648783a5671c1e64d7cfdab887d3731cb6558;p=platform%2Fupstream%2Fgstreamer.git descend into tests Original commit message from CVS: * Makefile.am: * configure.ac: descend into tests * docs/random/thomasvs/TODO: * tests/Makefile.am: * tests/README: add a README --- diff --git a/ChangeLog b/ChangeLog index 95a7c9e..16f4475 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,15 @@ 2005-11-30 Thomas Vander Stichele + * Makefile.am: + * configure.ac: + descend into tests + * docs/random/thomasvs/TODO: + * tests/Makefile.am: + * tests/README: + add a README + +2005-11-30 Thomas Vander Stichele + * win32/GStreamer.vcproj: * win32/MANIFEST: * win32/Makefile: diff --git a/Makefile.am b/Makefile.am index 48c6173..f82de07 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,14 +11,14 @@ aclocaldir = $(datadir)/aclocal aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4 SUBDIRS = \ - gst libs plugins tools \ + gst libs plugins tools tests \ docs \ pkgconfig po \ common # These are all the possible subdirs DIST_SUBDIRS = \ - gst libs plugins tools \ + gst libs plugins tools tests \ docs \ pkgconfig po \ common diff --git a/configure.ac b/configure.ac index b2086a9..57f4ccd 100644 --- a/configure.ac +++ b/configure.ac @@ -488,6 +488,7 @@ po/Makefile.in tests/Makefile tests/benchmarks/Makefile tests/check/Makefile +tests/misc/Makefile tools/Makefile common/Makefile common/m4/Makefile diff --git a/docs/random/thomasvs/TODO b/docs/random/thomasvs/TODO new file mode 100644 index 0000000..52701a9 --- /dev/null +++ b/docs/random/thomasvs/TODO @@ -0,0 +1,5 @@ +GSTREAMER +--------- +- make plugins be documented just like in the plugins modules +- do not link against them directly for the docs build +- gst-i18n-lib.h is included funnily from base classes and elements diff --git a/tests/Makefile.am b/tests/Makefile.am index c51ee87..65323dc 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -25,10 +25,12 @@ endif SUBDIRS = \ benchmarks \ $(SUBDIRS_CHECK) \ + misc \ $(SUBDIRS_TESTS) \ $(SUBDIRS_EXAMPLES) # These are all the possible subdirs DIST_SUBDIRS = \ benchmarks \ - check + check \ + misc diff --git a/tests/README b/tests/README index d0a0f60..bdd5574 100644 --- a/tests/README +++ b/tests/README @@ -1,3 +1,13 @@ -This directory contains various tests designed to test GStreamer's -behavior. When these tests work, they should be recast in the form -of regression tests and moved to ../testsuite. +This directory contains regression tests, functionality tests, examples, +benchmarks, ... + +check/ + unit tests using the check library, non-interactive +benchmarks/ + benchmarks to profile pieces of GStreamer +misc/ + prototypes, random bits, ... + +old/ + outdated tests that need to be converted to this new layout, + possibly use check, ported, ...