From e60791dc4659f18caecf6c0490f5aceb7c0a51b7 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 28 Feb 2009 06:21:21 -0400 Subject: Filter debug info output by GuardMalloc --- Makefile.am | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index b295fa35..99b64493 100644 --- a/Makefile.am +++ b/Makefile.am @@ -388,11 +388,16 @@ FULLCHECK=$(srcdir)/test/fullcheck.sh if HAVE_CPPUNIT cppunittests: $(TESTS) - @sh $(FULLCHECK) $(top_builddir)/UtilTests$(EXEEXT) --verify - @sh $(FULLCHECK) $(top_builddir)/MathTests$(EXEEXT) --verify - @sh $(FULLCHECK) $(top_builddir)/ExprTests$(EXEEXT) --verify - @sh $(FULLCHECK) $(top_builddir)/DataTests$(EXEEXT) --verify - @sh $(FULLCHECK) $(top_builddir)/ReportTests$(EXEEXT) --verify + @sh $(FULLCHECK) $(top_builddir)/UtilTests$(EXEEXT) --verify \ + 2>&1 | grep -v '^GuardMalloc:' + @sh $(FULLCHECK) $(top_builddir)/MathTests$(EXEEXT) --verify \ + 2>&1 | grep -v '^GuardMalloc:' + @sh $(FULLCHECK) $(top_builddir)/ExprTests$(EXEEXT) --verify \ + 2>&1 | grep -v '^GuardMalloc:' + @sh $(FULLCHECK) $(top_builddir)/DataTests$(EXEEXT) --verify \ + 2>&1 | grep -v '^GuardMalloc:' + @sh $(FULLCHECK) $(top_builddir)/ReportTests$(EXEEXT) --verify \ + 2>&1 | grep -v '^GuardMalloc:' else cppunittests: $(TESTS) @test 1 -eq 1 -- cgit v1.2.3