diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-28 06:21:21 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-28 06:21:21 -0400 |
commit | e60791dc4659f18caecf6c0490f5aceb7c0a51b7 (patch) | |
tree | e04a79292e268346112b1ca8512a0b310be72b3f | |
parent | 41092ee0720a3ae672a03fd29ea916bfe834d542 (diff) | |
download | fork-ledger-e60791dc4659f18caecf6c0490f5aceb7c0a51b7.tar.gz fork-ledger-e60791dc4659f18caecf6c0490f5aceb7c0a51b7.tar.bz2 fork-ledger-e60791dc4659f18caecf6c0490f5aceb7c0a51b7.zip |
Filter debug info output by GuardMalloc
-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 |