tests: tune skipping checks if we have disabled subsystems

Skip ABI tests if some subsystems are off. Remove DISABLE_GST_DEBUG from
skipping export checks as this is safe now.
This commit is contained in:
Stefan Kost 2010-09-06 14:32:00 +03:00
parent c5888dc6cf
commit 56a6094b75
2 changed files with 12 additions and 3 deletions

View file

@ -142,7 +142,6 @@ include $(top_srcdir)/common/coverage/lcov.mak
# Do not run the check-exports test in case any option which causes the API to
# change has been used
if !GST_DISABLE_GST_DEBUG
if !GST_DISABLE_LOADSAVE
if !GST_DISABLE_REGISTRY
if !GST_DISABLE_TRACE
@ -150,7 +149,6 @@ CHECK_EXPORTS = check-exports
endif
endif
endif
endif
check: $(CHECK_EXPORTS) check-enum-gettypes

View file

@ -33,6 +33,17 @@ else
PARSE_CHECKS = pipelines/simple-launch-lines pipelines/cleanup pipelines/parse-launch
endif
# Do not run the abi test in case any option which causes the API to change has
# been used
if !GST_DISABLE_LOADSAVE
if !GST_DISABLE_REGISTRY
if !GST_DISABLE_TRACE
ABI_CHECKS = gst/gstabi
endif
endif
endif
# if it's calling gst_element_factory_make(), it will probably not work without
# a registry
if GST_DISABLE_REGISTRY
@ -73,7 +84,7 @@ REGISTRY_CHECKS = \
endif
check_PROGRAMS = \
gst/gstabi \
$(ABI_CHECKS) \
gst/gstbuffer \
gst/gstbufferlist \
gst/gstbus \