version 1.1.1.1, 2012/02/21 23:38:00
|
version 1.1.1.2, 2014/06/15 19:53:34
|
Line 19 PYTESTS= \
|
Line 19 PYTESTS= \
|
xpath.py \ |
xpath.py \ |
outbuf.py \ |
outbuf.py \ |
inbuf.py \ |
inbuf.py \ |
|
input_callback.py \ |
resolver.py \ |
resolver.py \ |
regexp.py \ |
regexp.py \ |
reader.py \ |
reader.py \ |
Line 55 XMLS= \
|
Line 56 XMLS= \
|
invalid.xml \ |
invalid.xml \ |
test.dtd |
test.dtd |
|
|
|
CLEANFILES = core tmp.xml *.pyc |
|
|
if WITH_PYTHON |
if WITH_PYTHON |
tests: $(PYTESTS) |
tests: $(PYTESTS) |
|
@for f in $(XMLS) ; do test -f $$f || $(LN_S) $(srcdir)/$$f . ; done |
@echo "## running Python regression tests" |
@echo "## running Python regression tests" |
-@(PYTHONPATH="..:../.libs:$(srcdir)/..:$$PYTHONPATH" ; \ |
-@(PYTHONPATH="..:../.libs:$(srcdir)/..:$$PYTHONPATH" ; \ |
export PYTHONPATH; \ |
export PYTHONPATH; \ |
Line 69 tests: $(PYTESTS)
|
Line 73 tests: $(PYTESTS)
|
else |
else |
tests: |
tests: |
endif |
endif |
|
|
clean: |
|
rm -f *.pyc core |
|