descend into tests
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 30 Nov 2005 16:39:04 +0000 (16:39 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 30 Nov 2005 16:39:04 +0000 (16:39 +0000)
Original commit message from CVS:

* Makefile.am:
* configure.ac:
descend into tests
* docs/random/thomasvs/TODO:
* tests/Makefile.am:
* tests/README:
add a README

ChangeLog
Makefile.am
configure.ac
docs/random/thomasvs/TODO [new file with mode: 0644]
tests/Makefile.am
tests/README

index 95a7c9e..16f4475 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 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>
+
        * win32/GStreamer.vcproj:
        * win32/MANIFEST:
        * win32/Makefile:
index 48c6173..f82de07 100644 (file)
@@ -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
index b2086a9..57f4ccd 100644 (file)
@@ -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 (file)
index 0000000..52701a9
--- /dev/null
@@ -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
index c51ee87..65323dc 100644 (file)
@@ -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
index d0a0f60..bdd5574 100644 (file)
@@ -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, ...