applied patch from Charles Bozeman to nit use the system xmllint. Daniel

* Makefile.am: applied patch from Charles Bozeman to nit use
  the system xmllint.
Daniel
This commit is contained in:
Daniel Veillard 2004-02-26 09:57:32 +00:00
parent 7ebac02df6
commit c74859e03f
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Thu Feb 26 10:56:29 CET 2004 Daniel Veillard <daniel@veillard.com>
* Makefile.am: applied patch from Charles Bozeman to nit use
the system xmllint.
Wed Feb 25 18:07:05 CET 2004 Daniel Veillard <daniel@veillard.com>
* include/libxml/xmlexports.h: applied patch from Roland Schwingel

View File

@ -728,24 +728,24 @@ Timingtests: xmllint$(EXEEXT) $(srcdir)/dba100000.xml
@echo "## 2/ using the memory interface"
@echo "## 3/ repeated DOM parsing"
@echo "## 4/ repeated DOM validation"
-@(xmllint --stream --timing $(srcdir)/dba100000.xml; \
-@($(top_builddir)/xmllint --stream --timing $(srcdir)/dba100000.xml; \
MEM=`cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}'`;\
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
exit 0)
-@(xmllint --stream --timing --memory $(srcdir)/dba100000.xml; \
-@($(top_builddir)/xmllint --stream --timing --memory $(srcdir)/dba100000.xml; \
MEM=`cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}'`;\
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
exit 0)
-@(xmllint --noout --timing --repeat $(srcdir)/test/valid/REC-xml-19980210.xml; \
-@($(top_builddir)/xmllint --noout --timing --repeat $(srcdir)/test/valid/REC-xml-19980210.xml; \
MEM=`cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}'`;\
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
exit 0)
VTimingtests: xmllint$(EXEEXT)
-@(xmllint --noout --timing --valid --repeat $(srcdir)/test/valid/REC-xml-19980210.xml; \
-@($(top_builddir)/xmllint --noout --timing --valid --repeat $(srcdir)/test/valid/REC-xml-19980210.xml; \
MEM=`cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}'`;\
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\