check/Makefile.am: re-enable tests now that leaks are plugged
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 19 Sep 2005 14:09:54 +0000 (14:09 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 19 Sep 2005 14:09:54 +0000 (14:09 +0000)
Original commit message from CVS:
* check/Makefile.am:
re-enable tests now that leaks are plugged
* check/gst/gst.c:
* check/gst/gstbin.c:
* check/gst/gstpipeline.c:
add some more tests while fixing leaks
* common/check.mak:
make sure binaries are uptodate when valgrinding/gdbing
* gst/gst.c:
* gst/gstelementfactory.c:
remove a ref too many, and add a FIXME for when we get
round to disposing of classes
* gst/gstplugin.c:
fix the refcounting when loading a plugin from a file and
the code pretends that the pointer is the same even though
of course it can change
* gst/gstpluginfeature.c:
unref plugins marked cached (a bit confusing as a name)
as the docs state should be done
various doc additions to explain refcounting
* gst/gstregistry.c:
* gst/gstregistryxml.c:
debugging

check.mak

index 9b7d606..eb94195 100644 (file)
--- a/check.mak
+++ b/check.mak
@@ -13,13 +13,13 @@ check-valgrind:
 endif
 
 # run any given test by running make test.check
-%.check:
+%.check: %
        @$(TESTS_ENVIRONMENT)                                   \
        CK_DEFAULT_TIMEOUT=20                                   \
        $*
 
 # valgrind any given test by running make test.valgrind
-%.valgrind:
+%.valgrind: %
        $(TESTS_ENVIRONMENT)                                    \
        CK_DEFAULT_TIMEOUT=20                                   \
        libtool --mode=execute                                  \