diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-06 02:39:37 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-06 02:39:37 -0400 |
commit | aff490534a8e7826d89bbc75c6885b4a6bff4d17 (patch) | |
tree | b7a4fa4659d366b34e8ecb25267ec2ea9c11f93c | |
parent | f1e0e0c652e7861196cefb8c2dd21b60c93ac88e (diff) | |
download | ledger-aff490534a8e7826d89bbc75c6885b4a6bff4d17.tar.gz ledger-aff490534a8e7826d89bbc75c6885b4a6bff4d17.tar.bz2 ledger-aff490534a8e7826d89bbc75c6885b4a6bff4d17.zip |
In fullcheck, divide --verify and --gmalloc
-rw-r--r-- | Makefile.am | 12 |
1 files 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 ###################################################################### |