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
This commit is contained in:
Thomas Vander Stichele 2005-11-30 16:39:04 +00:00
parent 4344994d69
commit c93648783a
6 changed files with 34 additions and 6 deletions

View file

@ -1,3 +1,13 @@
2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
* 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 <thomas at apestaart dot org> 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
* win32/GStreamer.vcproj: * win32/GStreamer.vcproj:

View file

@ -11,14 +11,14 @@ aclocaldir = $(datadir)/aclocal
aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4 aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4
SUBDIRS = \ SUBDIRS = \
gst libs plugins tools \ gst libs plugins tools tests \
docs \ docs \
pkgconfig po \ pkgconfig po \
common common
# These are all the possible subdirs # These are all the possible subdirs
DIST_SUBDIRS = \ DIST_SUBDIRS = \
gst libs plugins tools \ gst libs plugins tools tests \
docs \ docs \
pkgconfig po \ pkgconfig po \
common common

View file

@ -488,6 +488,7 @@ po/Makefile.in
tests/Makefile tests/Makefile
tests/benchmarks/Makefile tests/benchmarks/Makefile
tests/check/Makefile tests/check/Makefile
tests/misc/Makefile
tools/Makefile tools/Makefile
common/Makefile common/Makefile
common/m4/Makefile common/m4/Makefile

View file

@ -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

View file

@ -25,10 +25,12 @@ endif
SUBDIRS = \ SUBDIRS = \
benchmarks \ benchmarks \
$(SUBDIRS_CHECK) \ $(SUBDIRS_CHECK) \
misc \
$(SUBDIRS_TESTS) \ $(SUBDIRS_TESTS) \
$(SUBDIRS_EXAMPLES) $(SUBDIRS_EXAMPLES)
# These are all the possible subdirs # These are all the possible subdirs
DIST_SUBDIRS = \ DIST_SUBDIRS = \
benchmarks \ benchmarks \
check check \
misc

View file

@ -1,3 +1,13 @@
This directory contains various tests designed to test GStreamer's This directory contains regression tests, functionality tests, examples,
behavior. When these tests work, they should be recast in the form benchmarks, ...
of regression tests and moved to ../testsuite.
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, ...