diff options
-rw-r--r-- | Makefile.am | 15 |
1 files 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 |