Filter debug info output by GuardMalloc

This commit is contained in:
John Wiegley 2009-02-28 06:21:21 -04:00
parent 41092ee072
commit e60791dc46

View file

@ -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