From aff490534a8e7826d89bbc75c6885b4a6bff4d17 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 6 Mar 2009 02:39:37 -0400 Subject: [PATCH] In fullcheck, divide --verify and --gmalloc --- Makefile.am | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index b59d2cf5..5dd139aa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -406,10 +406,14 @@ cppunittests: check endif fullcheck: cppunittests - @$(top_builddir)/RegressTests --verify --gmalloc - @$(top_builddir)/BaselineTests --verify --gmalloc - @$(top_builddir)/ConfirmTests --verify --gmalloc - @$(top_builddir)/GenerateTests --verify --gmalloc + @$(top_builddir)/RegressTests --verify + @$(top_builddir)/BaselineTests --verify + @$(top_builddir)/ConfirmTests --verify + @$(top_builddir)/GenerateTests --verify + @$(top_builddir)/RegressTests --gmalloc + @$(top_builddir)/BaselineTests --gmalloc + @$(top_builddir)/ConfirmTests --gmalloc + @$(top_builddir)/GenerateTests --gmalloc ######################################################################