# HG changeset patch # User Benoit Boissinot # Date 1167099097 -3600 # Node ID edaf68032a2725498d57da966d062c9836e63dc3 # Parent 033082ba1d1a510cc7455ce73f6f526e3202144f add possibility to pass flags when testing with the Makefile diff -r 033082ba1d1a -r edaf68032a27 Makefile --- a/Makefile Tue Dec 26 00:40:28 2006 +0100 +++ b/Makefile Tue Dec 26 03:11:37 2006 +0100 @@ -67,10 +67,10 @@ TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist tests: - cd tests && $(PYTHON) run-tests.py + cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) test-%: - cd tests && $(PYTHON) run-tests.py $@ + cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@ .PHONY: help all local build doc clean install install-bin install-doc \