identify failing tests

Original commit message from CVS:
identify failing tests
This commit is contained in:
Thomas Vander Stichele 2002-07-01 09:57:10 +00:00
parent cc682cae6c
commit 5173ab2d2c
2 changed files with 14 additions and 2 deletions

View file

@ -1,4 +1,10 @@
testprogs = cleanup1 cleanup2 cleanup3 cleanup4 cleanup5
if BUILD_FAILING_TESTS
FAILING = cleanup3 cleanup4
else
FAILING =
endif
testprogs = cleanup1 cleanup2 $(FAILING) cleanup5
GST_PLUGIN_PATH = $(shell cd $(top_builddir) && pwd)
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=`pwd`/test-registry.xml

View file

@ -1,4 +1,10 @@
testprogs = cleanup1 cleanup2 cleanup3 cleanup4 cleanup5
if BUILD_FAILING_TESTS
FAILING = cleanup3 cleanup4
else
FAILING =
endif
testprogs = cleanup1 cleanup2 $(FAILING) cleanup5
GST_PLUGIN_PATH = $(shell cd $(top_builddir) && pwd)
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=`pwd`/test-registry.xml