diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2005-03-02 10:47:41 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2005-03-02 10:47:41 +0000 |
commit | 25c90c589b256f0925f081198c1525134a491e31 (patch) | |
tree | a6e95f1c6d6a55c45437403e1d32c5938dcd40ee /doc/examples | |
parent | ba70cc0de7be1ef743d1a569945cd6316de5a493 (diff) | |
download | libxml2-25c90c589b256f0925f081198c1525134a491e31.tar.gz |
try to fix a problem with valgrind. applied memory leak fix from Brent
* Makefile.am doc/examples/Makefile.am python/tests/Makefile.am
xstc/Makefile.am: try to fix a problem with valgrind.
* python/generator.py python/libxml.c python/tests/Makefile.am
python/tests/tstmem.py: applied memory leak fix from Brent Hendricks
c.f. bug #165349
Daniel
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/Makefile.am | 2 | ||||
-rwxr-xr-x | doc/examples/index.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index a3ef18fa..97edc550 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am @@ -95,7 +95,7 @@ reader3_DEPENDENCIES= $(DEPS) reader3_LDADD= @RDL_LIBS@ $(LDADDS) valgrind: - $(MAKE) CHECKER='valgrind -q' tests + $(MAKE) CHECKER='valgrind' tests tests: $(noinst_PROGRAMS) @(echo '## examples regression tests') diff --git a/doc/examples/index.py b/doc/examples/index.py index db411657..11df6f0f 100755 --- a/doc/examples/index.py +++ b/doc/examples/index.py @@ -249,7 +249,7 @@ install-data-local: for example in examples: Makefile = Makefile + "%s_SOURCES=%s.c\n%s_LDFLAGS=\n%s_DEPENDENCIES= $(DEPS)\n%s_LDADD= @RDL_LIBS@ $(LDADDS)\n\n" % (example, example, example, example, example) - Makefile = Makefile + "valgrind: \n\t$(MAKE) CHECKER='valgrind -q' tests\n\n" + Makefile = Makefile + "valgrind: \n\t$(MAKE) CHECKER='valgrind' tests\n\n" Makefile = Makefile + "tests: $(noinst_PROGRAMS)\n" Makefile = Makefile + "\t@(echo '## examples regression tests')\n" Makefile = Makefile + "\t@(echo > .memdump)\n" |