From 4e887567c5b4b06646ab1340376e240d6c5af9cb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 20 Feb 2014 11:53:01 +0100 Subject: A rudimentary framework for additional Python tests not run by default * see the mail thread starting at "Testing/Working on PyUNO?" for a rationale * run the tests via top-level "make PythonTest_pytests" or "cd pyuno && make -rs PythonTest_pytests" or similar * see the documentation in pyuno/PythonTest_pytests.mk for adding tests to the framework Change-Id: I6a2a9e60b3294cd649f9cccbaffbd3f6bd79ecff --- pyuno/Module_pyuno.mk | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pyuno/Module_pyuno.mk') diff --git a/pyuno/Module_pyuno.mk b/pyuno/Module_pyuno.mk index 28aef7134f05..31c831a2e1d4 100644 --- a/pyuno/Module_pyuno.mk +++ b/pyuno/Module_pyuno.mk @@ -60,6 +60,12 @@ endif endif # SYSTEM_PYTHON +ifneq (,$(filter PythonTest_pytests,$(MAKECMDGOALS))) +$(eval $(call gb_Module_add_targets,pyuno, \ + PythonTest_pytests \ +)) +endif + endif # DISABLE_PYTHON # vim:set noet sw=4 ts=4: -- cgit