diff options
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 8fd4e8b5..32e22e3c 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -12,6 +12,7 @@ all: # and (if errors are expected) in *.err test tests: @(cur=`pwd` ; for dir in $(SUBDIRS) ; do cd $$dir ; $(MAKE) CHECKER='$(CHECKER)' tests ; cd $$cur ; done) + $(MAKE) plugin_tests valgrind: @echo '## Running the regression tests under Valgrind' @@ -23,3 +24,15 @@ full: tests docbook_tests docbook_tests: @(cd docbook ; $(MAKE) full) +if WITH_MODULES + +plugin_tests: + @echo Running the plugin tests... + @(cd plugins && LIBXSLT_PLUGINS_PATH=. $(top_builddir)/../xsltproc/xsltproc plugin.xsl plugin.xml) + +else + +plugin_tests: + @echo Skipping the plugin tests. + +endif |