diff options
Diffstat (limited to 'python/tests/Makefile.in')
| -rw-r--r-- | python/tests/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/python/tests/Makefile.in b/python/tests/Makefile.in index 893a517..f5e50ec 100644 --- a/python/tests/Makefile.in +++ b/python/tests/Makefile.in @@ -275,6 +275,7 @@ PYTESTS = \ readererr.py\ relaxng.py \ thread2.py \ + sync.py \ tstLastError.py \ indexes.py @@ -444,8 +445,13 @@ uninstall-am: uninstall-info-am @WITH_PYTHON_TRUE@tests: $(PYTESTS) -@WITH_PYTHON_TRUE@ -@(PYTHONPATH="..:../.libs:$(srcdir)/..:$$PYTHONPATH" ; export PYTHONPATH; \ -@WITH_PYTHON_TRUE@ for test in $(PYTESTS) ; do echo "-- $$test" ; $(PYTHON) $(srcdir)/$$test ; done) +@WITH_PYTHON_TRUE@ echo "## running Python regression tests" +@WITH_PYTHON_TRUE@ -@(PYTHONPATH="..:../.libs:$(srcdir)/..:$$PYTHONPATH" ; \ +@WITH_PYTHON_TRUE@ export PYTHONPATH; \ +@WITH_PYTHON_TRUE@ for test in $(PYTESTS) ; \ +@WITH_PYTHON_TRUE@ do log=`$(PYTHON) $(srcdir)/$$test` ; \ +@WITH_PYTHON_TRUE@ if [ "`echo $$log | grep OK`" = "" ] ; then \ +@WITH_PYTHON_TRUE@ echo "-- $$test" ; echo "$$log" ; fi ; done) @WITH_PYTHON_FALSE@tests: clean: |
