mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-05 14:02:26 +00:00
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:
parent
4344994d69
commit
c93648783a
6 changed files with 34 additions and 6 deletions
10
ChangeLog
10
ChangeLog
|
@ -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:
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
5
docs/random/thomasvs/TODO
Normal file
5
docs/random/thomasvs/TODO
Normal 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
|
|
@ -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
|
||||||
|
|
16
tests/README
16
tests/README
|
@ -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, ...
|
||||||
|
|
Loading…
Reference in a new issue