Add 'test' target to makefiles. Hook up ipautil tests to run.

This commit is contained in:
Kevin McCarthy
2007-09-04 10:22:45 -07:00
parent 90a34f3865
commit c85c8eede3
6 changed files with 26 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib()")
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
CONFIGDIR ?= $(DESTDIR)/etc/ipa
TESTS = $(wildcard test/*.py)
all: ;
@@ -15,3 +16,10 @@ install:
clean:
rm -f *~ *.pyc
.PHONY: test
test: $(subst .py,.tst,$(TESTS))
%.tst: %.py
python $<