Filter debug info output by GuardMalloc
This commit is contained in:
parent
41092ee072
commit
e60791dc46
1 changed files with 10 additions and 5 deletions
15
Makefile.am
15
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue